import { type IGatewayMailDomainOwner, type IStoredWorkAppMailIdentity } from './gateway-mail-domain-authority.js'; export interface IGatewayMailDomainStore { readAllIdentities(): Promise; writeAllIdentities(identitiesArg: IStoredWorkAppMailIdentity[]): Promise; countDomains(ownerArg: IGatewayMailDomainOwner): Promise; } export declare class GatewayMailDomainStore implements IGatewayMailDomainStore { readAllIdentities(): Promise; writeAllIdentities(identitiesArg: IStoredWorkAppMailIdentity[]): Promise; countDomains(ownerArg: IGatewayMailDomainOwner): Promise; }