import { CommonTheme, ThemeFromFn } from '../../theming'; export declare const captionTheme: ({ colors, typography }: CommonTheme) => [string, { color: string; fontFamily: string; fontSize: string; fontWeight: number; lineHeight: string; status: { basic: { color: string; }; primary: { color: string; }; success: { color: string; }; info: { color: string; }; warning: { color: string; }; danger: { color: string; }; control: { color: string; }; }; type: { default: { fontFamily: string; fontSize: string; fontWeight: number; lineHeight: string; }; alternate: { fontFamily: string; fontSize: string; fontWeight: number; lineHeight: string; }; }; }]; export declare type CaptionTheme = ThemeFromFn;