import { PropsWithChildrenAndClassName } from '../../types'; interface TableColSpecProps extends PropsWithChildrenAndClassName { align?: 'left' | 'right' | 'center' | 'justify'; } declare function TableColSpec({ align, className, ...props }: TableColSpecProps): import("react/jsx-runtime").JSX.Element; export { TableColSpec };