import React, { ReactNode } from 'react'; import { TypographyStyleConfigProps } from '@cleartrip/ct-design-typography'; import type { Styles } from '@cleartrip/ct-design-types'; import { ModalProps } from '../type'; type ModalTitleStyleConfig = { root?: Styles[]; iconContainer?: Styles[]; childrenTypography?: TypographyStyleConfigProps; crossIcon?: React.SVGProps; }; type ModalTitleProps = Pick & { children: ReactNode; styleConfig?: ModalTitleStyleConfig; }; declare const ModalTitle: React.FunctionComponent; export default ModalTitle; //# sourceMappingURL=ModalTitle.d.ts.map