import { ReactNode } from 'react'; import { CSSValueWithLength } from '../../styles'; export type SectionTitleDirection = 'horizontal' | 'vertical'; export type SectionTitleSize = 'small' | 'medium' | 'large'; export interface SectionTitleProps { /** @default horizontal */ direction?: SectionTitleDirection; /** @default large */ size?: SectionTitleSize; caption?: string; title: ReactNode; description?: ReactNode; textButton?: ReactNode; actions?: ReactNode; mb?: CSSValueWithLength; } export declare const SectionTitle: ({ direction, size, caption, title, description, textButton, actions, mb, }: SectionTitleProps) => import("@emotion/react/jsx-runtime").JSX.Element;