import { HubSpotPromise, QueryParams } from '../types/Http.js'; import { GetBuildStatusResponse, FunctionLog, GetRoutesResponse, GetFunctionLogsResponse } from '../types/Functions.js'; export declare function getRoutes(accountId: number): HubSpotPromise; export declare function getFunctionLogs(accountId: number, route: string, params?: QueryParams): HubSpotPromise; export declare function getLatestFunctionLog(accountId: number, route: string): HubSpotPromise; export declare function buildPackage(accountId: number, folderPath: string): HubSpotPromise; export declare function getBuildStatus(accountId: number, buildId: number | string): HubSpotPromise;