import type { CSS } from '@project44-manifest/react-styles';
declare type Align = 'center' | 'justify' | 'left' | 'right';
export declare type TableCellElement = 'td';
export interface TableCellProps {
    /**
     * Theme aware style object
     */
    css?: CSS;
    /**
     * Text alignment of the table cell.
     *
     * @default 'left'
     */
    align?: Align;
}
export {};
//# sourceMappingURL=TableCell.types.d.ts.map