import { ElementProps } from "../../../../types/shared.mjs"; import React from "react"; //#region src/components/styles/typography/section-break/SectionBreak.d.ts type SectionBreakSize = 'm' | 'l' | 'xl'; type SectionBreakProps = { size?: SectionBreakSize; visible?: boolean; } & ElementProps<'hr'>; declare const SectionBreak: { ({ className, size, visible, ...props }: SectionBreakProps): React.JSX.Element; displayName: string; }; //#endregion export { SectionBreak, SectionBreakProps, SectionBreakSize };