import { OnSelectParams, PlainTextObject, Prop } from '../../internal';
import { FoxOption } from '../../internal/interfaces/bits.interfaces';
export declare class OptionRdo implements FoxOption {
    value?: string;
    text: PlainTextObject;
    description?: PlainTextObject;
    [Prop.OnSelect]?: OnSelectParams;
    setValue(value: string): this;
    setText(text: string): void;
    setDescription(text: string): this;
}
