UNPKG

analytica-frontend-lib

Version:

Repositório público dos componentes utilizados nas plataformas da Analytica Ensino

18 lines 809 B
import { SupportApiClient } from '../../types/support/index'; export interface SupportProps { /** API client instance for making requests */ apiClient: SupportApiClient; /** Current user ID */ userId?: string; /** Custom empty state image source (optional, uses default if not provided) */ emptyStateImage?: string; /** Title displayed in the header */ title?: string; /** Callback when a ticket is successfully created */ onTicketCreated?: () => void; /** Callback when a ticket is successfully closed */ onTicketClosed?: () => void; } declare const Support: ({ apiClient, userId, emptyStateImage, title, onTicketCreated, onTicketClosed, }: SupportProps) => import("react/jsx-runtime").JSX.Element; export default Support; //# sourceMappingURL=Support.d.ts.map