import { DataAttributes } from '../types'; import { PropsWithBox } from '../Box'; import { ReactNode } from 'react'; export type ListDividerProps = PropsWithBox; export declare const Divider: { ({ children, ...rest }: ListDividerProps): JSX.Element; displayName: string; };