export interface WebhookGenOutput { schemas: string; functions: string; } /** * Generate the outgoing webhook delivery queue worker. * * The handler is inlined: it is wired exactly once, so a named export would * only be indirection. */ export declare const serializeWebhook: (pathToPikkuTypes: string) => WebhookGenOutput;