import { Connection, Messages } from '@salesforce/core'; export declare const messages: Messages; export type OrgSnapshotRequest = { SourceOrg: string; SnapshotName: string; Description: string; Content?: string; }; export type OrgSnapshot = OrgSnapshotRequest & { Id: string; Status: string; CreatedDate: string; LastModifiedDate: string; ExpirationDate?: string; Error?: string; }; export declare const ORG_SNAPSHOT_FIELDS: string[]; export declare const invalidTypeErrorHandler: (e: unknown) => never; export declare const queryAll: (conn: Connection) => Promise; export declare const queryByNameOrId: (conn: Connection, nameOrId: string) => Promise; export declare const printSingleRecordTable: (snapshotRecord: OrgSnapshot) => void; export declare const printRecordTable: (snapshotRecords: OrgSnapshot[]) => void;