import { ProviderCredentialsBase } from '../../../generated/storage/domain/value-object/provider-credentials.base'; interface ProviderCredentialsCreateProps { password: string | null; privateKey: string | null; accessKeyId: string | null; secretAccessKey: string | null; refreshToken: string | null; accessToken: string | null; } export declare class ProviderCredentials extends ProviderCredentialsBase { private constructor(); static create(props: ProviderCredentialsCreateProps): ProviderCredentials; } export {}; //# sourceMappingURL=provider-credentials.vo.d.ts.map