export declare const WEBHOOK_TOKEN_HOST = "https://webhook.site/token"; export declare const baseHeaders: { Accept: string; 'Content-Type': string; }; export declare const withApiKeyHeader: (apiKey?: string) => { "Api-Key": string; } | undefined; export declare const fetchWebHookSiteToken: (apiKey?: string, headers?: { Accept: string; 'Content-Type': string; }) => Promise; type FetchWebHookSiteTokenRequestsParams = Readonly<{ token: string; apiKey?: string; }>; export declare const fetchWebHookSiteTokenRequests: ({ token, apiKey }: FetchWebHookSiteTokenRequestsParams) => Promise; export type DeleteWebHookSiteTokenParams = FetchWebHookSiteTokenRequestsParams; export declare const deleteWebHookSiteToken: ({ token, apiKey }: DeleteWebHookSiteTokenParams) => Promise; export declare const tasks: { fetchWebHookSiteToken: (apiKey?: string, headers?: { Accept: string; 'Content-Type': string; }) => Promise; fetchWebHookSiteTokenRequests: ({ token, apiKey }: FetchWebHookSiteTokenRequestsParams) => Promise; deleteWebHookSiteToken: ({ token, apiKey }: DeleteWebHookSiteTokenParams) => Promise; }; export {};