import type { Location, RetrievePost, UpdatePost } from '@jackdbd/micropub'; import type { Syndicator } from '../schemas/syndicator.js'; import type { Log } from './log.js'; export interface Options { me: string; location: Location; log?: Log; logPrefix?: string; retrievePost: RetrievePost; syndicatorMap: { [uid: string]: Syndicator; }; /** * Default syndication targets (as list of uid) */ targets?: string[]; updatePost: UpdatePost; } export declare const processPost: (options: Options) => Promise<{ failures: string[]; successes: string[]; }>; //# sourceMappingURL=process-one-post.d.ts.map