import ServiceBase from '../base'; import { ContextConfigModel } from '../context/service-context'; declare class AccountService extends ServiceBase { constructor(serviceContext?: ContextConfigModel); getAllAccounts: (data: any) => Promise<{}>; getAccountByAccountId: (data: any) => Promise<{}>; getAccountPublicInfo: (data: any) => Promise<{}>; addAccount: (data: any) => Promise<{}>; shiftAccountActive: (data: any) => Promise<{}>; updateAccount: (data: any) => Promise<{}>; createPersonalAccount: () => Promise<{}>; updateAccountMailInscribe: (data: any) => Promise<{}>; getQuillEditorContent: (data: any) => Promise<{}>; getPublicAccounts: () => Promise<{}>; setUserToAccountAdmin: (data: any) => Promise<{}>; getAccountProfile: (accountId: any) => Promise<{}>; newAccountProfile: (data: any) => Promise<{}>; updateAccountProfile: (data: any) => Promise<{}>; getSpaceExtendCategories: (data: any) => Promise<{}>; addSpaceExtendCategory: (data: any) => Promise<{}>; updateSpaceExtendCategory: (data: any) => Promise<{}>; deleteSpaceExtendCategory: (data: any) => Promise<{}>; addSpaceExtendAttribute: (data: any) => Promise<{}>; deleteSpaceExtendAttribute: (data: any) => Promise<{}>; updateSpaceExtendAttribute: (data: any) => Promise<{}>; sortSpaceExtendAttribute: (data: any) => Promise<{}>; getExtendCategories: (data: any) => Promise<{}>; getExtendAttrResource: (data: any) => Promise<{}>; addExtendCategories: (data: any) => Promise<{}>; updateExtendCategory: (data: any) => Promise<{}>; deleteExtendCategory: (data: any) => Promise<{}>; addExtendAttribute: (data: any) => Promise<{}>; updateExtendAttribute: (data: any) => Promise<{}>; deleteExtendAttribute: (data: any) => Promise<{}>; ascendExtendedAttribute: (data: any) => Promise<{}>; searchAccounts: (data: any) => Promise<{}>; } export { AccountService }; //# sourceMappingURL=accounts.d.ts.map