import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface SeparatorProps extends StyleProps, IdProps {
    horizontal?: boolean;
}
export declare const Separator: ({ id, style, className, horizontal }: SeparatorProps) => import("react/jsx-runtime").JSX.Element;
