import { ColumnProps, CellProps, RowProps } from '@react-stately/table'; import { HTMLProps } from 'react'; import { BasePropsWithoutChildren, Styles } from '../../../tasty'; export declare const TableHeader: (props: TableHeaderProps) => JSX.Element; export declare const TableBody: (props: TableBodyProps) => JSX.Element; export declare const Row: (props: RowProps & { align?: 'left' | 'center' | 'right'; styles?: Styles; } & BasePropsWithoutChildren & HTMLProps) => JSX.Element; export declare const Column: (props: any) => JSX.Element; export declare const AligmentFromDTCatalog: { generic: string; numeric: string; date: string; }; export declare const Cell: (props: CellProps & BasePropsWithoutChildren & HTMLProps) => JSX.Element;