#ifndef IOS_CHROME_BROWSER_CREDENTIAL_EXCHANGE_MODEL_CREDENTIAL_EXPORTER_H_
#define IOS_CHROME_BROWSER_CREDENTIAL_EXCHANGE_MODEL_CREDENTIAL_EXPORTER_H_
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <vector>
#import "components/password_manager/core/browser/ui/credential_ui_entry.h"
#import "components/sync/protocol/webauthn_credential_specifics.pb.h"
@interface CredentialExporter : NSObject
- (instancetype)initWithWindow:(UIWindow*)window NS_DESIGNATED_INITIALIZER;
- (instancetype)init NS_UNAVAILABLE;
- (void)startExportWithPasswords:
(std::vector<password_manager::CredentialUIEntry>)passwords
passkeys:
(std::vector<sync_pb::WebauthnCredentialSpecifics>)
passkeys
securityDomainSecrets:(NSArray<NSData*>*)securityDomainSecrets
API_AVAILABLE(ios(26.0));
@end
#endif