import type { ChangeEventHandler, ComponentProps, ReactNode } from 'react'; import type { Except } from 'type-fest'; export interface RadioBehaviourProps { id: string; children: NonNullable; name: string; value?: string; checked?: boolean; className?: string; onChange?: ChangeEventHandler; } type InputOtherProps = Except, 'type' | 'className' | 'checked' | 'value' | 'name' | 'id' | 'onChange'>; export declare function RadioBehaviour({ id, children, checked, name, value, className, onChange, ...props }: RadioBehaviourProps & InputOtherProps): ReactNode; export {}; //# sourceMappingURL=index.d.ts.map