/**
 * Create a snapshot of given scratch source org.
 */
declare class OrgSnapshotCreateCommand {
    private logger;
    private orgSnapshotApi;
    constructor();
    execute(context: any): any;
    _getSourceOrgId(context: any): any;
    /**
     * returns a human readable message for a cli output
     *
     * @param result - the data representing the Org Snapshot
     * @returns {string}
     */
    getHumanSuccessMessage(result: any): string;
}
export = OrgSnapshotCreateCommand;
