import type { ReactNode } from 'react'; type SelectBarProps = { className?: string; children: (p: { selectedItems: T[]; unselectAll: () => void; }) => ReactNode; data: T[]; /** * The idKey of each data entry */ idKey: keyof T; }; export declare function SelectBar({ children, data, idKey, className }: SelectBarProps): import("react").JSX.Element | null; export declare namespace SelectBar { var displayName: string; } export {}; //# sourceMappingURL=SelectBar.d.ts.map