export interface UnorderedListProps {
    /** The text displayed. */
    sublist?: {
        text: string;
        sublist?: {
            text: string;
        }[];
    }[];
}
declare const UnorderedList: {
    (props: UnorderedListProps): any;
    defaultProps: {
        sublist: ({
            text: string;
            sublist?: undefined;
        } | {
            text: string;
            sublist: {
                text: string;
            }[];
        })[];
    };
};
export interface listItemProps {
    text?: string;
}
export default UnorderedList;
