import { ElementProps, WithVisuallyHiddenTextProps } from "../../../types/shared.mjs"; import React from "react"; //#region src/components/content-presentation/inset-text/InsetText.d.ts type InsetTextProps = WithVisuallyHiddenTextProps & ElementProps<'div'>; declare const InsetText: { ({ visuallyHiddenText, className, children, ...props }: InsetTextProps): React.JSX.Element; displayName: string; }; //#endregion export { InsetText, InsetTextProps };