import { TableLayoutPropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface TableLayoutProps { /** * The **`table-layout`** CSS property sets the algorithm used to lay out `` cells, rows, and columns. * * @see https://developer.mozilla.org/docs/Web/CSS/table-layout */ style$TableLayout: T; } export declare const tableLayout: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;