import type { TableHTMLAttributes } from 'react'; import type { DefaultProps } from '../../types'; export type TableProps = { /** * Will give the table zebra striping * @default false */ zebra?: boolean; /** * Will make the table header sticky * @default false */ stickyHeader?: boolean; /** * Will give the table a rounded border * @default false */ border?: boolean; /** * Will give the table a hover effect on rows * @default false */ hover?: boolean; } & Omit, 'border'> & DefaultProps; /** * Table component, used to display tabular data. Renders a native HTML table element. * * @example * * * * Name * Age * * * * * John * 25 * * * * * Total * 2 * * *
*/ export declare const Table: import("react").ForwardRefExoticComponent<{ /** * Will give the table zebra striping * @default false */ zebra?: boolean; /** * Will make the table header sticky * @default false */ stickyHeader?: boolean; /** * Will give the table a rounded border * @default false */ border?: boolean; /** * Will give the table a hover effect on rows * @default false */ hover?: boolean; } & Omit, "border"> & DefaultProps & import("react").RefAttributes>; //# sourceMappingURL=table.d.ts.map