/**
 * Copyright 2020, Verizon Media
 * Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms.
 */
import React from 'react';
export declare const DnList: {
    ({ children, className, isOrderedList, ...rest }: DnListProps): JSX.Element;
    Item: (props: DnListItemProps) => JSX.Element;
    defaultProps: {
        className: string;
        isOrderedList: boolean;
    };
};
export interface DnListProps {
    className?: string;
    children: React.ReactNode;
    isOrderedList: boolean;
}
export interface DnListItemProps {
    className?: string;
    children?: React.ReactNode;
}
//# sourceMappingURL=DnList.d.ts.map