/// export interface Props { align?: 'left' | 'center' | 'right'; width?: number | string; className?: string; children?: any; } declare const Th: ({ align, children, width, className }: Props) => JSX.Element; export default Th;