import 'dayjs/locale/pt-br';
import { SupportTicket, SupportApiClient } from '../../types/support/index';
export interface TicketModalProps {
    ticket: SupportTicket;
    isOpen: boolean;
    onClose: () => void;
    onTicketClose?: (ticketId: string) => void;
    /** API client instance for making requests */
    apiClient: SupportApiClient;
    /** Current user ID */
    userId?: string;
}
export declare const TicketModal: ({ ticket, isOpen, onClose, onTicketClose, apiClient, userId, }: TicketModalProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=TicketModal.d.ts.map