/** * Copyright (c) Paymium. * * This source code is licensed under the MIT license found in the * LICENSE file in the root of this projects source tree. */ import type { CrossedstyleValues } from '@crossed/styled'; export type FontStyle = Required>; export type HeadingName = 'md' | 'lg' | 'xl'; export type Headings = Record; export type TextName = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'h6' | 'h5' | 'h4' | 'h3' | 'h2' | 'h1'; export type Texts = Record; export type Font = { lineHeight: Record; fontSize: Record; fontWeight: Record; color: string; family: string; extraStyles?: CrossedstyleValues; }; //# sourceMappingURL=font.d.ts.map