export declare const AclRuleProtocolType: {
    readonly IP: "IP";
    readonly TCP: "TCP";
    readonly UDP: "UDP";
};
export type AclRuleProtocolType = (typeof AclRuleProtocolType)[keyof typeof AclRuleProtocolType];
export declare const FileType: {
    readonly License: "LICENSE";
    readonly CloudInit: "CLOUD_INIT";
};
export type FileType = (typeof FileType)[keyof typeof FileType];
export declare const ThroughputUnit: {
    readonly Mbps: "Mbps";
    readonly Gbps: "Gbps";
};
export type ThroughputUnit = (typeof ThroughputUnit)[keyof typeof ThroughputUnit];
