type AuthErrorCode = 'CredentialsNotFound' | 'UnAuthorized';
export declare class AuthError extends Error {
    constructor(message: string, code: AuthErrorCode);
    readonly code: AuthErrorCode;
}
export declare const awsCredentialsCheck: (options?: {
    accessKeyId?: string;
    secretAccessKey?: string;
}) => Promise<void>;
export {};
