interface ApiKeyResponse {
    resendKey: string;
    stickyHorseKey: string;
}
export declare function GenerateUserApiKey(masterApiKey: string, userName?: string): Promise<ApiKeyResponse>;
export declare function revokeUserApiKey(masterApiKey: string, resendKey: string): Promise<void>;
export declare function validateApiKeys(masterApiKey: string, resendKey: string): Promise<boolean>;
export {};
