/** * Checks if a CSS string contains valid style declarations. * * @param cssString - The CSS string to validate. * @param validProperties - An optional array of additional valid CSS properties. * @returns A boolean indicating whether the CSS string is valid. */ export declare const isValidStyle: (cssString: string, validProperties?: string[]) => boolean;