import * as react from 'react';
import { TextProps } from '@teamsparta/stack-text';

interface CustomModalTitleProps extends Omit<TextProps<"h2">, "as"> {
}
declare const CustomModalTitle: react.ForwardRefExoticComponent<Omit<CustomModalTitleProps, "ref"> & react.RefAttributes<HTMLHeadingElement>>;

export { CustomModalTitle, type CustomModalTitleProps };
