import { CaptionSidePropertyCombined } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface CaptionSideProps { /** * The **`caption-side`** CSS property puts the content of a table's `` on the specified side. The values are relative to the `writing-mode` of the table. * * @see https://developer.mozilla.org/docs/Web/CSS/caption-side */ style$CaptionSide: T; } export declare const captionSide: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;