export interface DividerProps { orientation?: 'horizontal' | 'vertical'; inset?: boolean; className?: string; } export declare function Divider({ orientation, inset, className }: DividerProps): import("react/jsx-runtime").JSX.Element;