import type { HTMLAttributes } from 'svelte/elements';
interface Props extends HTMLAttributes {
orientation?: "horizontal" | "vertical";
thickness?: "sm" | "md" | "lg";
color?: string;
}
declare const Separator: import("svelte").Component;
type Separator = ReturnType;
export default Separator;