import type { ChatAttachment } from '../chat/utils/chat-attachment-markdown'; export interface TicketOpenFormProps { /** Wired to `useTicketActions().submitTicket`. Returns true on success * so the form can clear itself. */ onSubmit: (input: { subject: string; content: string; attachments: 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