interface ISerializedFlag { name: string; defaultValue: string; options: string[]; externalType?: string; } interface ISerializedCustomProperty { name: string; type?: string; externalType: string; } export default class RoxRuntimeRegistry { includePlatformChanges: boolean; constructor(disableSignatureVerification?: boolean); get customProperties(): ISerializedCustomProperty[]; get featureFlags(): ISerializedFlag[]; } export {}; //# sourceMappingURL=RuntimeRegistry.d.ts.map