import { SelectOption } from './interfaces/select-option'; export declare class Option { label: string; value: any; constructor(options: SelectOption); }