export declare class SelectOption {
    label: string;
    value: string;
    constructor(label: string, value: string);
}
