import type { TokenIdentity } from "@smithy/types";
import type { AwsSdkTokenFeatures } from "../feature-ids";
export { TokenIdentity, TokenIdentityProvider } from "@smithy/types";
/**
 * @public
 *
 * TokenIdentity with source attribution metadata.
 */
export type AttributedTokenIdentity = TokenIdentity & {
    $source?: AwsSdkTokenFeatures;
};
