import type React from "react"; import type * as Design from "discord-client-types/discord_app/design/web"; interface CustomTextProps extends Design.TextProps { markdown?: boolean; allowMarkdownLinks?: boolean; allowMarkdownHeading?: boolean; allowMarkdownList?: boolean; } export type CustomTextType = Design.Text & Record<"Normal" | "H1" | "H2" | "H3" | "H4" | "Eyebrow", React.FC>; declare const CustomText: CustomTextType; export default CustomText;