import type { PropsFor } from "../../types.js";
export type TableProps = PropsFor<"table", {
    /** Hide outer left table border */
    noBorder?: boolean;
    /** Indicates whether table includes vertical headers */
    vertical?: boolean;
}>;
declare const Table: import("react").ForwardRefExoticComponent<TableProps & import("react").RefAttributes<HTMLTableElement>>;
export default Table;
