/**
 * Get a Org Snapshot record.
 */
declare class OrgSnapshotGetCommand {
    private logger;
    private orgSnapshotApi;
    private orgSnapshotIdOrName;
    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}
     */
    getHumanSuccessMessage(result: any): string;
}
export = OrgSnapshotGetCommand;
