import React, { FC } from 'react'; export declare const DIVIDER_PADDINGS: readonly ["none", "sm", "md", "lg"]; export declare type DividerPadding = typeof DIVIDER_PADDINGS[number]; export declare type DividerProps = React.ComponentProps<'div'> & { padding?: DividerPadding; }; export declare const Divider: FC;