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