/**
 * Table component
 * @param {Object} props - Component props
 * @param {string} [props.className] - Additional classes
 * @param {React.Ref} ref - Forwarded ref
 * @returns {JSX.Element} Table component
 */
export const Table: import("react").ForwardRefExoticComponent<import("react").RefAttributes<any>>;
/**
 * Table header component
 * @param {Object} props - Component props
 * @param {string} [props.className] - Additional classes
 * @param {React.Ref} ref - Forwarded ref
 * @returns {JSX.Element} TableHeader component
 */
export const TableHeader: import("react").ForwardRefExoticComponent<import("react").RefAttributes<any>>;
/**
 * Table body component
 * @param {Object} props - Component props
 * @param {string} [props.className] - Additional classes
 * @param {React.Ref} ref - Forwarded ref
 * @returns {JSX.Element} TableBody component
 */
export const TableBody: import("react").ForwardRefExoticComponent<import("react").RefAttributes<any>>;
/**
 * Table footer component
 * @param {Object} props - Component props
 * @param {string} [props.className] - Additional classes
 * @param {React.Ref} ref - Forwarded ref
 * @returns {JSX.Element} TableFooter component
 */
export const TableFooter: import("react").ForwardRefExoticComponent<import("react").RefAttributes<any>>;
/**
 * Table head cell component
 * @param {Object} props - Component props
 * @param {string} [props.className] - Additional classes
 * @param {React.Ref} ref - Forwarded ref
 * @returns {JSX.Element} TableHead component
 */
export const TableHead: import("react").ForwardRefExoticComponent<import("react").RefAttributes<any>>;
/**
 * Table row component
 * @param {Object} props - Component props
 * @param {string} [props.className] - Additional classes
 * @param {React.Ref} ref - Forwarded ref
 * @returns {JSX.Element} TableRow component
 */
export const TableRow: import("react").ForwardRefExoticComponent<import("react").RefAttributes<any>>;
/**
 * Table cell component
 * @param {Object} props - Component props
 * @param {string} [props.className] - Additional classes
 * @param {React.Ref} ref - Forwarded ref
 * @returns {JSX.Element} TableCell component
 */
export const TableCell: import("react").ForwardRefExoticComponent<import("react").RefAttributes<any>>;
/**
 * Table caption component
 * @param {Object} props - Component props
 * @param {string} [props.className] - Additional classes
 * @param {React.Ref} ref - Forwarded ref
 * @returns {JSX.Element} TableCaption component
 */
export const TableCaption: import("react").ForwardRefExoticComponent<import("react").RefAttributes<any>>;
//# sourceMappingURL=table.d.ts.map