import React from 'react'; export type TitleVariant = 'default' | 'quest' | 'event'; export interface TitleProps { children: React.ReactNode; icon?: React.ReactNode; variant?: TitleVariant; className?: string; location?: { label: string; href: string; }[]; actions?: React.ReactNode; } export declare const Title: React.ForwardRefExoticComponent>; export interface SectionTitleProps { children: React.ReactNode; className?: string; } export declare const SectionTitle: React.ForwardRefExoticComponent>; export default Title; //# sourceMappingURL=title.d.ts.map