import { default as React, JSX } from 'react';
export type TableProps = {
    bordered?: boolean;
    caption?: React.ReactNode;
    children: React.ReactNode;
    className?: string;
    fullWidth?: boolean;
    fixed?: boolean;
    scrollable?: boolean;
    striped?: boolean;
    compact?: boolean;
    stackedStyle?: 'none' | 'default' | 'headers';
    stickyHeader?: boolean;
};
export declare const Table: ({ bordered, caption, children, className, fullWidth, fixed, scrollable, striped, compact, stackedStyle, stickyHeader, }: TableProps) => JSX.Element;
export default Table;
