import { StyledComponent, DefaultTheme } from 'styled-components'; import { SystemProps, StyledConfigType } from "../../../lib"; declare const variants: { plg: { fontSize: number[]; fontWeight: string; lineHeight: string; }; pmd: { fontSize: number[]; fontWeight: string; lineHeight: string; }; psm: { fontSize: number[]; fontWeight: string; lineHeight: string; }; label: { display: string; lineHeight: string; fontWeight: string; color: string; cursor: string; '&[disabled=""]': { cursor: string; opacity: number; }; }; }; declare type CustomProps = { as?: 'p' | 'span' | 'blockquote' | 'strong' | 'em' | 'pre' | 'label'; variant?: keyof typeof variants; id?: string; } & SystemProps; export declare const Text: StyledComponent<'div', DefaultTheme, CustomProps> & StyledConfigType; export {};