import React from 'react';
export interface IAutoCompletesProps {
    show?: boolean;
    list?: {
        id: string;
        title: string;
    }[];
    onSelect?: (item: {
        id: string;
        title: string;
    }) => void;
    renderAutoCompletes?: (props: {
        show?: boolean;
        list?: {
            id: string;
            title: string;
        }[];
        onSelect?: (item: {
            id: string;
            title: string;
        }) => void;
    }) => React.ReactElement | null;
}
export declare const AutoCompletes: (props: IAutoCompletesProps) => React.JSX.Element | null;
