import Color from '../constants/Color'; export declare enum SeparatorDirection { HORIZONTAL = "horizontal", VERTICAL = "vertical" } export type SeparatorProps = { width?: number; height?: number; color?: Color; padding?: string; direction?: SeparatorDirection; }; /** * This component is used to add separator line in the application */ export declare function BCSeparator({ width, height, color, padding, direction, }: SeparatorProps): import("@emotion/react/jsx-runtime").JSX.Element;