import * as React from 'react'; import ILocalContainerProps from '../../../common/structures/ILocalContainerProps'; import { FunctionGeneric } from '../../../common/structures/Generics'; interface IRadioBlockItemProps extends ILocalContainerProps { disabled?: boolean; warn?: boolean; heightSize?: 'm' | 'l' | 'none'; label?: string; onClick?: FunctionGeneric; readonly?: boolean; selected?: boolean; svg?: any; value?: string | null; content?: React.ReactNode; borderOnHover?: boolean; centerContent?: boolean; } interface IProps extends ILocalContainerProps { default?: string | null; direction?: 'horiz' | 'vert'; disabled?: boolean; warn?: boolean; heightSize?: 'm' | 'l' | 'none'; onChange?: FunctionGeneric; options: { [key: string]: IRadioBlockItemProps; }; readonly?: boolean; borderOnHover?: boolean; centerContent?: boolean; } declare const RadioBlock: React.FC; export default RadioBlock; //# sourceMappingURL=RadioBlock.d.ts.map