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