import { ThemeColorIndex } from "../../styles/theme.interface"; export declare type DividerOrientation = 'horizontal' | 'vertical'; export interface DividerProps { color?: ThemeColorIndex; orientation?: DividerOrientation; className?: string; [props: string]: any; } export declare const Divider: ({ className, color, orientation, ...props }: DividerProps) => import("@emotion/react/jsx-runtime").JSX.Element; export declare const VerticalDivider: (props: DividerProps) => import("@emotion/react/jsx-runtime").JSX.Element; export declare const HorizontalDivider: (props: DividerProps) => import("@emotion/react/jsx-runtime").JSX.Element;