import React from 'react';
interface SeparatorProps {
    /**
     * The thickness of the separator
     * @default 1
     * @optional
     */
    thickness?: number;
    /**
     * The orientation of the separator
     * @default "horizontal"
     */
    orientation?: 'horizontal' | 'vertical';
    /**
     * The alpha value (from 0 to 1) to be applied to the separator
     * @default 0.1
     * @optional
     */
    alpha?: number;
    /**
     * The gap between the separator and the content
     * @default tokens.spacings.s
     */
    gap?: number | string;
}
export declare const Separator: React.FC<SeparatorProps>;
export {};
