import * as React from 'react';
export interface DescriptiveListItemProps {
    /** Title of the item */
    title: React.ReactNode;
    /**  Item content */
    children?: React.ReactNode;
}
export declare function DescriptiveListItem({ title, children }: DescriptiveListItemProps): React.JSX.Element;
//# sourceMappingURL=DescriptiveListItem.d.ts.map