import { AdyenClient } from '../client.mjs'; export type PciQuestionnaireInfo = { /** * The date the questionnaire was created, in ISO 8601 extended format. * For example, 2022-12-18T10:15:30+01:00 */ createdAt?: string; /** * The unique identifier of the signed questionnaire. */ id?: string; /** * The expiration date of the questionnaire, in ISO 8601 extended format. * For example, 2022-12-18T10:15:30+01:00 */ validUntil?: string; }; export type GetPciQuestionnaireOutput = { /** * Information about the signed PCI questionnaires. */ data?: PciQuestionnaireInfo[]; }; export declare function getPciQuestionnaire(client: AdyenClient, legalEntityId: string): Promise; //# sourceMappingURL=get-pci-questionnaire.d.mts.map