export interface BizCustomContactChooseExternalParams { title?: string; users?: string[]; disabledUsers?: string[]; } export interface BizCustomContactChooseExternalResult { name: string; avatar: string; emplId: string; } declare function bizCustomContactChooseExternal(params: BizCustomContactChooseExternalParams): Promise; declare namespace bizCustomContactChooseExternal { var version: { android: string; ios: string; pc: string; }; } export default bizCustomContactChooseExternal;