import { AdyenClient } from '../client.mjs'; export type CreateSignPciInput = { /** * The array of Adyen-generated unique identifiers for the questionnaires. */ pciTemplateReferences: string[]; /** * The legal entity ID of the individual who signs the PCI questionnaire. */ signedBy: string; }; export type CreateSignPciOutput = { /** * The unique identifiers of the signed PCI documents. */ pciQuestionnaireIds?: string[]; /** * The legal entity ID of the individual who signed the PCI questionnaire. */ signedBy?: string; }; export declare function createSignPci(client: AdyenClient, legalEntityId: string, input: CreateSignPciInput): Promise; //# sourceMappingURL=create-sign-pci.d.mts.map