import type { ChangeEventHandler, ReactNode } from 'react'; export interface RadioProps { id: string; name: string; checked?: boolean; right?: boolean; children: NonNullable; value: string; onChange?: ChangeEventHandler; } /** @deprecated use Radio from kitt-universal instead */ export declare function Radio({ id, onChange, children, checked, name, value, right }: RadioProps): ReactNode; //# sourceMappingURL=index.d.ts.map