import type { SsoProfile } from "@aws-sdk/credential-provider-sso"; import type { CredentialProviderOptions } from "@aws-sdk/types"; import type { Profile } from "@smithy/types"; /** * @internal */ export declare const resolveSsoCredentials: (profile: string, options?: CredentialProviderOptions) => Promise; /** * @internal * duplicated from \@aws-sdk/credential-provider-sso to defer import. */ export declare const isSsoProfile: (arg: Profile) => arg is Partial;