import type { InstanceJSON } from './JSON';
export declare class Instance {
    readonly id: string;
    readonly environmentType: string;
    readonly allowedOrigins: Array<string> | null;
    constructor(id: string, environmentType: string, allowedOrigins: Array<string> | null);
    static fromJSON(data: InstanceJSON): Instance;
}
//# sourceMappingURL=Instance.d.ts.map