import type { Generic } from 'adopted-style-sheets'; import type { WatchBooleanOptions } from '../utils'; export type ActivePropType = boolean; export type PropActive = { active: ActivePropType; }; export declare const validateActive: (component: Generic.Element.Component, value: ActivePropType, options?: WatchBooleanOptions) => void;