import React from "react"; export interface RadioItem { label: string; value: string; } export interface NRadioProps { label?: string; isDisabled?: boolean; value: string; items: RadioItem[]; onValueChange: (value: string) => void; className?: string; labelClassName?: string; itemClassName?: string; } export declare const NRadio: React.NamedExoticComponent; //# sourceMappingURL=NRadio.d.ts.map