import { components } from '../lib/api/pdp-v1.js'; export type AuthorizationQuery = components['schemas']['AuthorizationQuery']; export interface UrlRequestInput { user: { key: string; firstName?: string; lastName?: string; email?: string; attributes: Record; }; http_method: string; url: string; tenant: string; context: Record; sdk?: string; } export declare const useCheckPdpApi: () => { getAllowedCheck: (body: AuthorizationQuery, pdp_url?: string) => Promise, "application/json">, "error"> & { error: string | null; }>; getAllowedUrlCheck: (requestInput: UrlRequestInput, pdp_url?: string) => Promise, "application/json">, "error"> & { error: string | null; }>; };