import { IAwsCredentials, IAwsProfile } from "../../@types/index"; /** * Type guard which detects whether a give input is a `IAwsProfile` object * representing the data in a credentials file in a snake_case fashion. */ export declare function isAwsProfile(input: unknown): input is IAwsProfile; /** * Type guard which detects whether a give input is a `IAwsCred` object * representing the data in a credentials file in a snake_case fashion. */ export declare function isAwsCredentials(input: unknown): input is IAwsCredentials; //# sourceMappingURL=aws-type-guards.d.ts.map