import { IconType, IconFontColor } from './types'; import { IconProp } from '@fortawesome/fontawesome-svg-core'; import { ReactNode } from 'react'; export type TitleProps = { title?: string; children?: ReactNode; className?: string; icon?: IconType | IconProp; iconDuotonePrimary?: IconFontColor; iconDuotoneSecondary?: IconFontColor; iconDuotoneOpacityPrimary?: number; iconDuotoneOpacitySecondary?: number; center?: boolean; }; //# sourceMappingURL=title.d.ts.map