/** * @public * @enum */ export declare const ResultFormatString: { readonly CSV: "CSV"; readonly JSON: "JSON"; }; /** * @public */ export type ResultFormatString = (typeof ResultFormatString)[keyof typeof ResultFormatString]; /** * @public * @enum */ 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"; }; /** * @public */ export type StatusString = (typeof StatusString)[keyof typeof StatusString]; /** * @public * @enum */ export declare const StatementStatusString: { readonly ABORTED: "ABORTED"; readonly FAILED: "FAILED"; readonly FINISHED: "FINISHED"; readonly PICKED: "PICKED"; readonly STARTED: "STARTED"; readonly SUBMITTED: "SUBMITTED"; }; /** * @public */ export type StatementStatusString = (typeof StatementStatusString)[keyof typeof StatementStatusString];