import { InputSwitchProps } from 'primereact/inputswitch';

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