import { EntityId } from "../../../../src"; import { AuthenticatorType } from "../../entities"; import { RawEntity } from "./RawEntity"; export interface RawAuthenticator extends RawEntity { owner_id: EntityId; type: AuthenticatorType; metadata?: string; } //# sourceMappingURL=RawAuthenticator.d.ts.map