export interface VolcengineCredentials { accessKeyId: string; secretAccessKey: string; region: string; } export interface SignedRequestOptions { method: string; host: string; path: string; query: Record; headers?: Record; body?: string; service: string; } export declare function signRequest(credentials: VolcengineCredentials, options: SignedRequestOptions): Record; export declare function buildUrl(host: string, path: string, query: Record): string;