/// <reference types="react" />
import type * as Common from "../common/types";
import type { Props } from "./types";
export declare const StyledSeparator: import("styled-components").StyledComponent<"hr", import("styled-components").DefaultTheme, {
    spaceAfter?: Common.SpaceAfterSizes | undefined;
    $type: Props["type"];
    $color?: Props["color"];
}, never>;
declare const Separator: ({ align, indent, spaceAfter, type, color, }: Props) => JSX.Element;
export default Separator;
