import { DataAttributes } from '../types';
import { PropsWithBox } from '../Box';
import { ReactNode } from 'react';

export type ListDividerProps = PropsWithBox<DataAttributes & {
    children?: ReactNode;
}>;
export declare const Divider: {
    ({ children, ...rest }: ListDividerProps): JSX.Element;
    displayName: string;
};
