import type { Snippet } from 'svelte';
interface Props {
    header: boolean;
    align: 'left' | 'center' | 'right' | null;
    children?: Snippet;
}
/**
 * Renders a table cell as either `<th>` (header) or `<td>` (data), with optional
 * text alignment applied as an inline `text-align` style.
 *
 * @prop {boolean} header - When `true`, renders a `<th>`; otherwise renders a `<td>`.
 * @prop {'left'|'center'|'right'|null} align - Column alignment.
 * @prop {Snippet} [children] - Cell content.
 */
declare const TableCell: import("svelte").Component<Props, {}, "">;
type TableCell = ReturnType<typeof TableCell>;
export default TableCell;
