import { Environment } from '@hubspot/local-dev-lib/types/Accounts'; type PrivateAppInstallUrlArgs = { targetAccountId: number; env: Environment; appId: number; }; type PublicAppInstallUrlArgs = { targetAccountId: number; env: Environment; clientId: string; scopes: string[]; redirectUrls: string[]; }; export declare function getOauthAppInstallUrl({ targetAccountId, env, clientId, scopes, redirectUrls, }: PublicAppInstallUrlArgs): string; export declare function getStaticAuthAppInstallUrl({ targetAccountId, env, appId, }: PrivateAppInstallUrlArgs): string; export declare function getAppCardSetupUrl({ targetAccountId, env, appId, }: PrivateAppInstallUrlArgs): string; export {};