import { SeparatorProps } from 'react-aria'; import type { Spacing } from '../../../styles/spacing/types'; import { ComponentProps } from 'react'; export declare const dividerVariants: (props?: ({ variant?: "vertical" | "horizontal" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const dividerTextVariants: (props?: ({ variant?: "vertical" | "horizontal" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type DividerProps = ComponentProps<'div'> & SeparatorProps & { orientation?: 'horizontal' | 'vertical'; label?: string; spacing?: Spacing; style?: React.CSSProperties; }; //# sourceMappingURL=types.d.ts.map