import { AccessTypeEnum } from './AccessTypeEnum';
/** A structure describing the server's access */
export interface Access {
    /** Password */
    password?: string;
    /** Application access type */
    type: AccessTypeEnum;
    /** Url */
    url?: string;
    /** Login */
    user?: string;
}
//# sourceMappingURL=Access.d.ts.map