import type { Generic } from 'adopted-style-sheets';
import type { WatchBooleanOptions } from '../utils';
export type VisibilityTogglePropType = boolean;
export type PropVisibilityToggle = {
    visibilityToggle: VisibilityTogglePropType;
};
export declare const validateVisibilityToggle: (component: Generic.Element.Component, value?: VisibilityTogglePropType, hooks?: WatchBooleanOptions) => void;
