import { CommonTheme, ThemeFromFn } from '../../theming'; export declare const paragraphTheme: ({ colors, typography }: CommonTheme) => [string, { margin: { none: string; xxsmall: string; xsmall: string; small: string; medium: string; large: string; xlarge: string; xxlarge: string; }; variant: { default: { color: string; fontFamily: string; fontSize: string; fontWeight: number; lineHeight: string; }; alternate: { color: string; fontFamily: string; fontSize: string; fontWeight: number; lineHeight: string; }; }; }]; export declare type ParagraphTheme = ThemeFromFn;