import React from 'react'; import { DefaultProps, FlowindColor, FlowindSize, Variants } from '../../styles'; export type DividerStylesNames = 'label'; export interface DividerProps extends DefaultProps, React.ComponentPropsWithoutRef<'div'> { /** Key of theme.colors, defaults to "gray" in light color scheme and to "dark" in dark color scheme */ color?: FlowindColor; /** Divider orientation */ orientation?: 'horizontal' | 'vertical'; /** Sets height when orientation="horizontal" and width when orientation="vertical" */ size?: FlowindSize; /** Text inside the divider, only applicable when orientation="horizontal" */ label?: React.ReactNode; /** Label position, only applicable when orientation="horizontal" */ labelPosition?: 'left' | 'center' | 'right'; /** Props added to the label element */ labelProps?: Record; /** Controls appearance */ variant?: Variants<'solid' | 'dashed' | 'dotted'>; } export declare const Divider: React.ForwardRefExoticComponent>;