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