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

interface CustomModalCaptionProps extends Omit<TextProps<"p">, "as"> {
}
declare const CustomModalCaption: react.ForwardRefExoticComponent<Omit<CustomModalCaptionProps, "ref"> & react.RefAttributes<HTMLParagraphElement>>;

export { CustomModalCaption, type CustomModalCaptionProps };
