import * as React from 'react'; declare function Table({ className, ...props }: React.ComponentPropsWithoutRef<'table'>): import("react/jsx-runtime").JSX.Element; declare function TableHeader({ className, ...props }: React.ComponentPropsWithoutRef<'thead'>): import("react/jsx-runtime").JSX.Element; declare function TableBody({ className, ...props }: React.ComponentPropsWithoutRef<'tbody'>): import("react/jsx-runtime").JSX.Element; declare function TableFooter({ className, ...props }: React.ComponentPropsWithoutRef<'tfoot'>): import("react/jsx-runtime").JSX.Element; declare function TableRow({ className, ...props }: React.ComponentPropsWithoutRef<'tr'>): import("react/jsx-runtime").JSX.Element; declare function TableHead({ className, ...props }: React.ComponentPropsWithoutRef<'th'>): import("react/jsx-runtime").JSX.Element; declare function TableCell({ className, ...props }: React.ComponentPropsWithoutRef<'td'>): import("react/jsx-runtime").JSX.Element; declare function TableCaption({ className, ...props }: React.ComponentPropsWithoutRef<'caption'>): import("react/jsx-runtime").JSX.Element; export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, };