import BaseResponse from "../model/baseresponse"; export declare const buildResponse: (responseCode: number, message: string, data: any) => BaseResponse; export declare const generateStrongSecret: (length?: number, excludedChars?: string[]) => string; export declare const generateClientId: (name: string) => string; export declare const hashContent: (content: string) => string;