import React from 'react'; import { FlintTableCell as FlintTableCellElement } from '@getufy/flint-ui/table/flint-table'; /** * A single cell within a ``. Can render as a data cell or a header cell via the `header` attribute. Supports text alignment and padding presets. * * @slot (default) - Cell content (text, icons, controls, etc.). */ export interface FlintTableCellProps extends React.HTMLAttributes { /** Renders the cell with header (th) styling. */ header?: boolean; /** * Text alignment within the cell. * Allowed values: 'left' | 'right' | 'center' */ align?: 'left' | 'right' | 'center'; /** * Padding preset for the cell. * Allowed values: 'normal' | 'checkbox' | 'none' */ padding?: 'normal' | 'checkbox' | 'none'; } export declare const FlintTableCell: React.ForwardRefExoticComponent>;