/** * Status check barrel — re-exports all check functions and utilities. * * Individual check implementations live in: * - sso-checks.ts — AWS SSO (checkSSOStatus) * - aws-checks.ts — CodeArtifact, ECR * - mcp-checks.ts — GitLab token, Atlassian token, MCP server */ import type { SSOStatus } from './types.js'; declare function getProfileRegion(profile: string): string | undefined; declare function parseAssumedRoleArn(arn: string): { roleName?: string; sessionName?: string; }; declare function deriveAccountAlias(profile: string): string | undefined; export declare function checkSSOStatus(profile: string): Promise; export declare function formatRelativeTime(date: Date): string; export { checkCodeArtifactStatus, checkECRStatus } from './aws-checks.js'; export { checkGitLabToken, checkAtlassianToken, checkMcpServer, formatExpiresIn } from './mcp-checks.js'; export { getProfileRegion, parseAssumedRoleArn, deriveAccountAlias }; //# sourceMappingURL=checks.d.ts.map