import { DetailedHTMLProps, PropsWithChildren, ReactEventHandler, TableHTMLAttributes, default as React } from 'react'; export interface TableProps extends DetailedHTMLProps, HTMLTableElement> { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Defines what style this component should use. */ variant?: 'colored' | 'bordered'; /** * Call a function when the component is resized. */ onResize?: ReactEventHandler | undefined; /** * A version of onResize that fires in the capture phase. */ onResizeCapture?: ReactEventHandler | undefined; /** * A randomly generated string that is only used once. */ nonce?: string | undefined; } declare const Table: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export default Table; //# sourceMappingURL=Table.d.ts.map