import React from 'react'; /** * Props for the PageSubTitle component. * @property {string} text The subtitle text. * @property {Object} [learnMore] An object with a `url` (required) for displaying a link button on the subtitle. * @property {string} learnMore.url where the link should navigate to * @property {string} [learnMore.label ="Learn more"] - the label of the link button. defaults to "Learn More" */ export interface PageSubTitleProps { text: string; learnMore?: { url: string; label?: string; }; } /** * Renders a page subtitle with an optional learn more button * @component * @param {PageSubTitleProps} props The props for the component. * @example * ```jsx * * ``` */ export declare const PageSubTitle: ({ text, learnMore }: PageSubTitleProps) => React.JSX.Element; //# sourceMappingURL=PageSubTitle.d.ts.map