import React from 'react';
export interface DescriptionListsProps {
    data?: Array<{
        title: string;
        description: string;
    }>;
    type?: 'default' | 'border';
    size?: 'default' | 'small';
    className?: string;
}
export declare function PHXDescriptionLists({ data, size, type, className }: DescriptionListsProps): React.JSX.Element;
