export declare type AuthnFunction = (clientId: string, clientSecret: string) => Promise<boolean>;
export declare function SinglePassword(plaintext: string): AuthnFunction;
export declare function LookupAuth(credentials: {
    [clientId: string]: string;
}): AuthnFunction;
