import * as SeparatorPrimitive from '@radix-ui/react-separator'; import type * as React from 'react'; interface DividerProps extends React.ComponentProps { size: 's' | 'm'; } declare function Divider({ className, orientation, size, decorative, ...props }: DividerProps): React.JSX.Element; export { Divider, type DividerProps }; //# sourceMappingURL=index.d.ts.map