import type { ExtractStrict } from 'type-fest'; import type { EndpointFromPaths, MutationOptions } from '../types'; import type { components, paths } from './pci.contract'; type PciEndpoint = EndpointFromPaths; export type PciSignEndpoint = ExtractStrict; type SignPciResponse = components['schemas']['PciSigningResponse']; type Request = components['schemas']['PciSigningRequest']; export declare const useSignPci: (options?: Omit, "mutationFn">) => import("@tanstack/preact-query").UseMutationResult<{ pciQuestionnaireIds?: string[]; signedBy?: string; }, unknown, { pciTemplateReferences?: string[]; signedBy?: string; }, unknown>; export {};