import { Separator as Component } from './Separator'; export declare const Separator: { readonly name: "Separator"; readonly purpose: "Draws a horizontal or vertical rule between sections."; readonly example: ""; readonly body: "none"; readonly props: readonly [{ readonly name: "orientation"; readonly type: "string"; readonly values: readonly ["horizontal", "vertical"]; readonly default: "horizontal"; readonly description: "Direction of the dividing rule."; }, { readonly name: "decorative"; readonly type: "boolean"; readonly default: true; readonly description: "Whether assistive tools should ignore the separator."; }]; readonly Component: typeof Component; };