import React from 'react'; import * as IconSet from '../../../icons'; export declare const getTableItems: (selectable: boolean, expandable: boolean, customIcon: boolean, tags: boolean, customImage?: boolean) => ({ actionColumn: React.JSX.Element; customIcon: false | { component: typeof IconSet.Disc; size?: undefined; style?: undefined; }; customImage: string | false | undefined; dataColumns: React.JSX.Element[]; nameColumn: { description: string; href: string; onClick: () => void; target: string; tags: false | { id: string; name: string; }[]; text: string; }; expandButtonProps: false | { onClick: () => void; }; selectableCheckbox: false | { checked: boolean; id: string; onChange: () => void; value: string; }; selected: boolean; } | { actionColumn: React.JSX.Element; customIcon: false | { component: typeof IconSet.Bub; size: number; style: { margin: string; }; }; customImage: false | React.JSX.Element | undefined; dataColumns: React.JSX.Element[]; nameColumn: { description: string; href: string; onClick: () => void; target: string; tags: false | { id: string; name: string; }[]; text: string; }; expandButtonProps: false | { onClick: () => void; }; selectableCheckbox: false | { id: string; onChange: () => void; value: string; checked?: undefined; }; selected?: undefined; })[];