import { FC, HTMLAttributes } from "react"; //#region src/components/layout/separator/separator.d.ts type Props = { orientation?: 'horizontal' | 'vertical'; color?: 'base' | 'mute' | 'subtle'; } & Omit, 'children' | 'role' | 'aria-orientation' | 'className' | 'style'>; declare const Separator: FC; //#endregion export { Separator };