export interface TicketOpenFormProps { /** Wired to `useTicketActions().submitTicket`. Returns true on success * so the form can clear itself. */ onSubmit: (input: { subject: string; content: string; attachments: import('../chat/utils/chat-attachment-markdown').ChatAttachment[]; }) => Promise; isSubmitting: boolean; supportSystemDown: boolean; } export declare function TicketOpenForm({ onSubmit, isSubmitting, supportSystemDown, }: TicketOpenFormProps): import("react").JSX.Element; //# sourceMappingURL=ticket-open-form.d.ts.map