import { ComponentProps } from 'react'; import { Box } from '../Box'; declare type SeparatorProps = ComponentProps & { orientation?: 'horizontal' | 'vertical'; }; export declare const Separator: ({ orientation, width, height, backgroundColor, ...rest }: SeparatorProps) => JSX.Element; export {};