import { CheckboxProps } from 'primereact/checkbox';

export interface CheckboxTogetherProps extends Omit<CheckboxProps, 'checked' | 'onChange'> {
    rtKey: string;
    className?: string;
}
export default function CheckboxTogether({ rtKey, ...props }: CheckboxTogetherProps): import("react/jsx-runtime").JSX.Element;
