import React from 'react'; declare type TaglineProps = { /** * The text of the tagline. */ children: React.ReactNode; /** * Determines the font size. */ size?: 'small' | 'large'; }; export default function Tagline({ children, size }: TaglineProps): JSX.Element; export {}; //# sourceMappingURL=Tagline.d.ts.map