import { AxiosInstance, InternalAxiosRequestConfig } from 'axios'; import Accounts, { Account } from './accounts.js'; import Users from './users.js'; import Projects from './projects.js'; import Assets from './assets.js'; import AssetManifests from './asset-manifests.js'; import Runtimes from './runtimes.js'; import PrivateLocations from './private-locations.js'; import Locations from './locations.js'; import TestSessions from './test-sessions.js'; import EnvironmentVariables from './environment-variables.js'; import HeartbeatChecks from './heartbeat-checks.js'; import ChecklyStorage from './checkly-storage.js'; import Checks from './checks.js'; import CheckStatuses from './check-statuses.js'; import CheckResults from './check-results.js'; import CheckGroups from './check-groups.js'; import ErrorGroups from './error-groups.js'; import TestSessionErrorGroups from './test-session-error-groups.js'; import StatusPages from './status-pages.js'; import Incidents from './incidents.js'; import Analytics from './analytics.js'; import BatchAnalytics from './batch-analytics.js'; import Entitlements from './entitlements.js'; import AccountMembers from './account-members.js'; import AlertChannels from './alert-channels.js'; import AlertNotifications from './alert-notifications.js'; import Rca from './rca.js'; import Cancel from './cancel.js'; export declare function getDefaults(): { baseURL: string; accountId: string; Authorization: string; apiKey: string; }; export declare function validateAuthentication(): Promise; export declare function requestInterceptor(config: InternalAxiosRequestConfig): InternalAxiosRequestConfig; export declare function responseErrorInterceptor(error: any): void; export declare const api: AxiosInstance; export declare const accounts: Accounts; export declare const user: Users; export declare const projects: Projects; export declare const assets: Assets; export declare const assetManifests: AssetManifests; export declare const runtimes: Runtimes; export declare const locations: Locations; export declare const privateLocations: PrivateLocations; export declare const testSessions: TestSessions; export declare const environmentVariables: EnvironmentVariables; export declare const heartbeatCheck: HeartbeatChecks; export declare const checklyStorage: ChecklyStorage; export declare const checks: Checks; export declare const checkStatuses: CheckStatuses; export declare const checkResults: CheckResults; export declare const checkGroups: CheckGroups; export declare const errorGroups: ErrorGroups; export declare const testSessionErrorGroups: TestSessionErrorGroups; export declare const statusPages: StatusPages; export declare const incidents: Incidents; export declare const analytics: Analytics; export declare const batchAnalytics: BatchAnalytics; export declare const entitlements: Entitlements; export declare const accountMembers: AccountMembers; export declare const alertChannels: AlertChannels; export declare const alertNotifications: AlertNotifications; export declare const rca: Rca; export declare const cancel: Cancel;