import { TemplateResult } from 'lit';
import { FormAssociatedProps } from '../mixins/form-associated/interface';
export declare type TSelectItem = {
    content: string | TemplateResult;
    value: string;
};
export declare type TListboxPosition = 'auto' | 'top';
export interface IPropsSelect extends FormAssociatedProps {
    multiple: boolean;
    searchable: boolean;
}
