/** * Path to AWS CLI configuration file */ declare const AWS_CONFIG_PATH: string; /** * Parse AWS config file and extract profile names * * @returns Array of profile names (e.g., ['default', 'staging', 'production']) * * Format: [profile name] or [default] for the default profile * Returns empty array if file doesn't exist or is invalid * * @example * Input: ~/.aws/config with [default], [profile staging], [profile prod] * Output: ['default', 'staging', 'prod'] */ export declare function parseAWSConfig(): string[]; /** * Get list of AWS SSO profiles * * Alias for parseAWSConfig with clearer naming */ export declare function getAWSProfiles(): string[]; export { AWS_CONFIG_PATH }; //# sourceMappingURL=aws-config.d.ts.map