import { CSSProcessorConfig } from './config'; import { ValidatorsType } from './makepropertiesValidators'; import { GenericCSSPropertyValidator } from './validators/GenericPropertyValidator'; export declare class CSSPropertiesValidationRegistry { readonly validators: Readonly; readonly ignoredPropertiesRegistry: Partial>; readonly allowedPropertiesRegistry: Partial> | null; constructor(config: CSSProcessorConfig); private isInlinePropertyAllowed; shouldRegisterInlineProperty(name: string): name is keyof ValidatorsType; getValidatorForProperty(name: T): T extends keyof ValidatorsType ? GenericCSSPropertyValidator : null; } //# sourceMappingURL=CSSPropertiesValidationRegistry.d.ts.map