import { FC } from 'react'; /** * Divider properties */ export interface DividerPropsStrict { /** Content position */ alignContent?: 'start' | 'center' | 'end'; /** Adds one or more classnames for an element */ className?: string; /** Set the wrapping element's tagname */ el?: any; /** Adjust thickness */ spacing?: '0' | 'half' | '1' | '2' | '3' | '4' | '5' | 0 | 1 | 2 | 3 | 4 | 5; /** Separate content vertically */ vertical?: boolean; } export interface DividerProps extends DividerPropsStrict { [propName: string]: any; } export declare const Divider: FC;