export interface SelectOption {
    value: any;
    text: string;
    description?: string;
}