import { BaseSelect } from './base-select.component'; import { IPresetsSelectOptionEntity, ISelectProps, ISelectState } from '../../../definition'; /** * @component-impl * @stable [22.12.2020] */ export declare class Select extends BaseSelect { static readonly defaultProps: ISelectProps & Partial>; /** * @stable [22.12.2020] * @protected */ protected getFilteredOptions(): IPresetsSelectOptionEntity[]; /** * @stable [22.12.2020] * @protected */ protected getFieldClassName(): string; }