import { ReactNode } from 'react'; export declare const getId: (id: string, component: string) => string; export interface CheckboxOptionsProps { id: string; checked: boolean; onChange: () => void; disabled: boolean; helpMessage: ReactNode; label: ReactNode; value: TValue; } export declare const CheckboxOption: ({ disabled, id, checked, label, value, onChange, helpMessage, }: CheckboxOptionsProps) => import("@emotion/react/jsx-runtime").JSX.Element;