import * as i from '../interfaces'; export declare function enumStringToValue(enumRef: any, value: string): E; export declare class PermissionLists implements i.PermissionListsInterface { whitelist: string[]; blacklist: string[]; static fromProto(proto: any): PermissionLists; constructor(kwargs?: i.PermissionListsInterface); toApiJson(): object; } export declare class Restrictions implements i.RestrictionsInterface { country: PermissionLists; static fromProto(proto: any): Restrictions; constructor(kwargs?: i.RestrictionsInterface); toApiJson(): object; }