/** @jsxRuntime classic */ /** @jsx jsx */ import { jsx } from "../emotion.js"; import { type ResponsiveProp, type Theme } from "../types.js"; import { type MarginProps } from "./Box.js"; type ColorType = ResponsiveProp; declare const orientationMap: { horizontal: string; vertical: string; }; type DividerProps = { children?: never; color?: ColorType; orientation?: keyof typeof orientationMap; className?: string; } & MarginProps; export declare const Divider: ({ orientation, color, ...props }: DividerProps) => jsx.JSX.Element; export {}; //# sourceMappingURL=Divider.d.ts.map