import type { ReactNode } from 'react'; import { type BoxProps } from '../Box'; export type DividerProps = BoxProps & { variation?: 'danger'; children?: ReactNode; vertical?: boolean; }; declare const Divider: ({ variation, children, vertical, ...props }: DividerProps) => import("react/jsx-runtime").JSX.Element; export default Divider; //# sourceMappingURL=Divider.d.ts.map