import * as react_jsx_runtime from 'react/jsx-runtime';
import React__default from 'react';
import { VariantProps as VariantPropsInternal } from './variants.js';

declare const title: (props?: ({
    as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | undefined;
    fontWeight?: "bold" | "normal" | "medium" | "semibold" | "extraBold" | undefined;
} & {
    className?: string;
}) | undefined) => string;
type TitleProps = VariantPropsInternal<typeof title> & {
    className?: string;
} & React__default.HTMLAttributes<HTMLHeadingElement>;
declare function Title({ as, fontWeight, children, className, ...props }: React__default.PropsWithChildren<TitleProps>): react_jsx_runtime.JSX.Element;
declare namespace Title {
    var displayName: string;
}

export { Title, type TitleProps };
