import type { Services } from '../../services/mod.js'; import type { DeviceRegistrationManifest } from '../../domain/device-registration-manifest.js'; import { BaseError } from '../../framework/error/mod.js'; interface Options { deps: { services: Services; }; } export interface GetSupporterDto { manifest: DeviceRegistrationManifest; } export declare class GetSupporterError extends BaseError { readonly _tag = "GetSupporterError"; } export declare function buildGetSupporter(options: Options): (dto: GetSupporterDto) => Promise<{ error: GetSupporterError; value?: never; } | { error?: never; value: import("../../domain/supporter.js").Supporter; }>; export {}; //# sourceMappingURL=get-supporter.d.ts.map