export type DividerSpacing = 'none' | 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl'; export interface DividerProps { spacingTop?: DividerSpacing; spacingBottom?: DividerSpacing; color?: string; className?: string; } export declare function Divider({ spacingTop, spacingBottom, color, className }: DividerProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Divider.d.ts.map