import type { CSS } from "../theme/stitches.config"; import React from "react"; import { DividerAlign, SimpleColors } from "../utils/prop-types"; import { DividerVariantsProps } from "./divider.styles"; interface Props { x?: number; y?: number; height?: number; textColor?: SimpleColors; align?: DividerAlign; css?: CSS; as?: keyof JSX.IntrinsicElements; children?: React.ReactNode; } declare type NativeAttrs = Omit, keyof Props>; export declare type DividerProps = Props & DividerVariantsProps & NativeAttrs; declare const _default: React.ComponentType & Omit & NativeAttrs, "height" | "x" | "y" | "align">>; export default _default;