import { Duration } from '@salesforce/kit';
export declare const SANDBOXDEF_SRC_SANDBOXNAME = "SourceSandboxName";
export declare class SandboxConstants {
    static readonly DEFAULT_MAX_RETRIES: number;
    static DEFAULT_POLL_INTERVAL: Duration;
    static readonly SANDBOX_INCOMPLETE_EXCEPTION_MESSAGE = "INVALID_STATUS";
}
export declare class SandboxEventNames {
    static readonly EVENT_STATUS: string;
    static readonly EVENT_ASYNCRESULT: string;
    static readonly EVENT_RESULT: string;
    static readonly EVENT_CLIENTID_NOTSUPPORT: string;
}
export declare enum SandboxStatus {
    Pending = "Pending",
    PendingRemote = "Pending Remote Creation",
    Processing = "Processing",
    Completed = "Completed",
    Activating = "Activating"
}
