type DividerProps = { orientation?: 'vertical' | 'horizontal'; decorative?: boolean; asChild?: boolean; margin?: string; className?: string; color?: string; }; export declare const Divider: ({ orientation, decorative, asChild, margin, className, color, }: DividerProps) => JSX.Element; export {};