import { CustomToggleProps } from './CustomToggle.types'; declare const usePresenter: (props: CustomToggleProps) => { variantProps: { 'component-variant': string; }; isChecked: boolean; handleChange: (event: React.ChangeEvent) => void; disabled: boolean; invalid: boolean; otherInputProps: { initialValue?: boolean | undefined; id?: string; }; required: boolean; content: import("react").ReactNode; }; export default usePresenter;