interface Options {
    email: string;
    account_id?: string;
    files?: {
        project_id: string;
        path?: string;
    }[];
    type?: "bug" | "question";
    subject?: string;
    body?: string;
    url?: string;
    info?: {
        userAgent?: string;
        browser?: string;
    };
}
export default function createTicket(options: Options): Promise<string>;
export {};
