import { PropsWithChildren } from 'react';
export interface ProseProps {
    notProse?: boolean;
    className?: string;
}
export declare function Prose({ children, notProse, className, }: PropsWithChildren<ProseProps>): import("react/jsx-runtime").JSX.Element;
