import React from 'react';
import type { TypographyTextProps } from '@open-condo/ui/src';
import type { ListProps as DefaultListProps } from 'antd';
type ListDataSource = {
    label: string;
    value: string;
    valueTextType?: TypographyTextProps['type'];
    valueClick?: () => void;
};
type CondoListProps = {
    title?: string;
};
export type ListProps = Omit<DefaultListProps<ListDataSource>, 'bordered' | 'pagination' | 'footer' | 'renderItem' | 'header'> & CondoListProps;
declare const List: React.FC<ListProps>;
export { List, };
//# sourceMappingURL=list.d.ts.map