import type { RetrievePost, UpdatePost, WebsiteUrlToStoreLocation } from '@jackdbd/micropub/schemas/user-provided-functions'; import type { RouteHandler } from 'fastify'; import type { Syndicator } from '../schemas/syndicator.js'; export interface Options { logPrefix: string; me: string; retrievePost: RetrievePost; syndicatorMap: { [uid: string]: Syndicator; }; updatePost: UpdatePost; urlToLocation: WebsiteUrlToStoreLocation; } export declare const defSyndicatePost: (options: Options) => RouteHandler; //# sourceMappingURL=syndicate-post.d.ts.map