import { type HTMLProps } from 'react'; interface Props extends Omit, 'value' | 'ref'> { value?: boolean; label: string; } export declare function QueryHeaderSwitch({ label, ...inputProps }: Props): import("react/jsx-runtime").JSX.Element; export {};