import { Principal } from "./principal.js";
export interface Validator {
    validate(authTokenOrApiKey: string): Promise<Principal>;
}
