declare type TextShowcaseProps = { /** * Class to showcase. */ showcaseClass?: string; /** * Style to showcase. */ showcaseStyle?: { [key: string]: any; }; /** * Whether to use long text. */ useLongText?: boolean; /** The showcase component props. */ componentProps?: Record; }; /** Component used to showcase different text styles or classes. */ export declare const TextShowcase: ({ showcaseClass, showcaseStyle, useLongText, componentProps, }: TextShowcaseProps) => JSX.Element; export {};