import { JSX } from 'solid-js'; export interface SeparatorProps extends JSX.HTMLAttributes { orientation?: 'horizontal' | 'vertical'; } export declare function Separator(props: SeparatorProps): JSX.Element;