import { CheckboxProps } from '@patternfly/react-core'; import { ReactNode } from 'react'; import { FieldPath, FieldValues, Validate } from 'react-hook-form'; export type PageFormCheckboxProps = FieldPath> = { id?: string; name: TFieldName; validate?: Validate | Record>; labelHelpTitle?: string; labelHelp?: string | string[] | ReactNode; label?: string; defaultValue?: boolean; enableReset?: boolean; className?: string; } & Pick; export declare function PageFormCheckbox = FieldPath>(props: PageFormCheckboxProps): import("react/jsx-runtime").JSX.Element;