/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface TableProps extends StyleProps, React.PropsWithChildren<any>, IdProps {
    centered?: boolean;
    bordered?: boolean;
    tableStyle?: React.CSSProperties;
}
export declare const Table: ({ id, style, children, tableStyle, bordered, centered, className }: TableProps) => import("react/jsx-runtime").JSX.Element;
