/// <reference types="react" />
import './divider.scss';
/**
 * The divider has margin included by default, you can remove it by adding `style={{margin:"0"}}`
 * @specs https://m3.material.io/components/divider/specs
 */
export declare const Divider: import("react").ForwardRefExoticComponent<{
    /**
     * @default full
     */
    sd?: "inset" | "full" | undefined;
    /**
     * @default horizon
     */
    direction?: "vertical" | "horizon" | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "sd" | "direction"> & import("react").RefAttributes<HTMLHRElement>>;
