import React, { PropsWithChildren } from 'react'; export type CheckboxStandaloneProps = PropsWithChildren<{ id: string; isChecked: boolean; isDisabled?: boolean; handleOnClick: (event: React.SyntheticEvent) => void; }>; declare const CheckboxStandalone: ({ children, isChecked, isDisabled, handleOnClick, id, }: CheckboxStandaloneProps) => JSX.Element; export default CheckboxStandalone;