import { IAuthenticationOwner, IAuthenticationTypeIdentifier } from "./base";
export interface AuthenticationOption extends IAuthenticationOwner, IAuthenticationTypeIdentifier {
    enabled?: boolean;
}
