import { FlattenInterpolation, ThemeProps } from 'styled-components'; import { ITypography } from '@tidy-ui/types'; import { ITidyUITheme } from '../theme'; /** * Font type */ declare type Font = keyof ITypography; /** * Creates font styles for a given typographical text type * * @param {string} variant typographical text type * @returns {FlattenInterpolation} css */ declare const createFontStyle: (variant?: Font) => FlattenInterpolation>; export default createFontStyle;