import { InfraError } from './InfraError';
export declare class FileStorageError extends InfraError {
readonly provider: string;
readonly providerErrorCode: string;
constructor(message: string, code: string, provider: 'aws', providerErrorCode: string);
}