import type { Generic } from 'adopted-style-sheets'; import type { WatchBooleanOptions } from '../utils'; export type OpenPropType = boolean; export type PropOpen = { open: OpenPropType; }; export declare const validateOpen: (component: Generic.Element.Component, value: OpenPropType | undefined, options?: WatchBooleanOptions) => void;