import React from "react"; type Props = { readonly className: string; readonly text: string; readonly id: string; readonly color?: string; }; export declare const Heading5: ({ className, text, id, color }: Props) => React.JSX.Element; export {};