import { default as React } from 'react'; import { StyleProps } from '../../style-engine'; export declare const subtitleStyles: import('../..').StylesDef<{ size: { sm: string; md: string; lg: string; '2xl': string; }; weight: { light: string; lighter: string; normal: string; semibold: string; bold: string; }; uppercase: { true: string; false: string; }; letterSpacing: { tighest: string; tight: string; normal: string; wide: string; widest: string; }; color: { readonly default: "text-foreground"; readonly white: "text-white"; readonly primary: "text-primary"; readonly secondary: "text-secondary"; readonly accent: "text-accent"; readonly muted: "text-muted"; readonly success: "text-success"; readonly warning: "text-warning"; readonly danger: "text-danger"; readonly info: "text-info"; readonly gradient: "text-gradient-ui"; }; margin: { 0: string; 1: string; 2: string; 4: string; 6: string; }; }>; type SubtitleVariantProps = StyleProps; export interface SubtitleProps extends Omit, keyof SubtitleVariantProps>, SubtitleVariantProps { } export declare function Subtitle({ size, weight, color, uppercase, letterSpacing, className, ...props }: SubtitleProps): React.JSX.Element; export {};