export declare const ResultFormatString: { readonly CSV: "CSV"; readonly JSON: "JSON"; }; export type ResultFormatString = (typeof ResultFormatString)[keyof typeof ResultFormatString]; export declare const StatusString: { readonly ABORTED: "ABORTED"; readonly ALL: "ALL"; readonly FAILED: "FAILED"; readonly FINISHED: "FINISHED"; readonly PICKED: "PICKED"; readonly STARTED: "STARTED"; readonly SUBMITTED: "SUBMITTED"; }; export type StatusString = (typeof StatusString)[keyof typeof StatusString]; export declare const StatementStatusString: { readonly ABORTED: "ABORTED"; readonly FAILED: "FAILED"; readonly FINISHED: "FINISHED"; readonly PICKED: "PICKED"; readonly STARTED: "STARTED"; readonly SUBMITTED: "SUBMITTED"; }; export type StatementStatusString = (typeof StatementStatusString)[keyof typeof StatementStatusString];