declare namespace _default {
    function items({ query }: {
        query: any;
    }): Promise<({
        id: string;
        name: string;
        contactKey: string;
        avatarSrc: any;
        showDetails: boolean;
        presence: string;
        presenceText: string;
        status: string;
    } | {
        id: string;
        name: string;
        contactKey: string;
        avatarSrc: any;
        showDetails: boolean;
        presence: string;
        status: string;
        presenceText?: undefined;
    } | {
        id: string;
        name: string;
        contactKey: string;
        avatarSrc: any;
        showDetails?: undefined;
        presence?: undefined;
        presenceText?: undefined;
        status?: undefined;
    })[]>;
}
export default _default;
//# sourceMappingURL=mention_suggestion.d.ts.map