@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
17 lines (16 loc) • 470 B
TypeScript
/**
* MSKCC DSM 2021, 2023
*/
declare const TableToolbarContent: {
({ className: baseClassName, ...other }: {
[x: string]: any;
className?: string | undefined;
}): import("react").ReactElement<{
className: string | undefined;
}, string | import("react").JSXElementConstructor<any>>;
displayName: string;
propTypes: {
className: import("prop-types").Requireable<string>;
};
};
export default TableToolbarContent;