import { GlobalProps } from '../utilities/globalProps'; declare type TitleDetailProps = { align?: "left" | "center" | "right"; aria?: { [key: string]: string; }; className?: string; data?: { [key: string]: string; }; detail: string; id?: string; title: string; } & GlobalProps; declare const TitleDetail: (props: TitleDetailProps) => JSX.Element; export default TitleDetail;