/**
 * List Org Snapshots linked DevHub.
 */
declare class OrgSnapshotListCommand {
    private logger;
    private records;
    constructor();
    execute(context: any): Promise<import("./orgSnapshotApi").OrgSnapshot[]>;
    /**
     * returns a human readable message for a cli output
     *
     * @param result - the data representing the Org Snapshot
     * @returns {string}
     */
    getColumnData(): ({
        key: string;
        label: string;
        format?: undefined;
    } | {
        key: string;
        label: string;
        format: (value: any) => string;
    })[];
}
export = OrgSnapshotListCommand;
