export default interface ValueOption<TValue = string> {
    value: TValue;
    text: string;
}
