import { Option, SelectAll, SelectFound } from '../../types';
type Options = {
    options: Option[];
    selectAll: SelectAll;
    selectFound: SelectFound;
    allowsCustomValue?: boolean;
};
export declare function useHasIcons({ allowsCustomValue, options, selectAll, selectFound, }: Options): boolean;
export {};
