import { default as React } from 'react'; interface TableProps { children: React.ReactNode; caption?: string; 'aria-label'?: string; } export declare function Table({ children, caption, 'aria-label': ariaLabel }: TableProps): import("react/jsx-runtime").JSX.Element; export {};