import React, { type ReactElement } from 'react'; import type { RadioControlGroupOptionProps, RadioControlGroupValue } from '../RadioControlGroupOption'; import { type StyledNestedControlProps } from '../styles'; interface NestedControlProps extends StyledNestedControlProps, Omit { selectedValue: RadioControlGroupValue; disabled?: boolean; child: ReactElement; } export declare const NestedControl: ({ $row, selectedValue, disabled, value, label, error, child, }: NestedControlProps) => React.JSX.Element; export {}; //# sourceMappingURL=NestedControl.d.ts.map