import type { Indexable } from 'hongluan-business-ui/es/utils/types';
export interface SearchbarSelectors {
    colCount: string;
    items: Array<SelectorItem>;
}
export interface SelectorItem {
    label?: string;
    span?: string;
    type: string;
    value: unknown;
    name: string;
    display?: () => string;
    prop?: {
        label: string;
        value: string;
    };
    options: SelectorItemOption[];
}
export declare type SelectorItemOption = Indexable<unknown>;
