import { ElementProps } from "../../../../types/shared.mjs"; import React from "react"; //#region src/components/styles/layout/reading-width/ReadingWidth.d.ts type ReadingWidthProps = ElementProps<'div'>; declare const ReadingWidth: { ({ className, ...props }: ReadingWidthProps): React.JSX.Element; displayName: string; }; //#endregion export { ReadingWidth, ReadingWidthProps };