type PropertyType = 'str' | 'int' | 'uint' | 'double' | 'bool' | 'array' | 'dict'; export declare function validateCamouConfigValue(value: unknown, expectedType: PropertyType): boolean; export declare function validateCamouConfig(config: Record, browserRootDir: string): Promise; export {};