import { AdyenClient } from '../client.mjs'; export type GetPciQuestionnaireByIdOutput = { /** * The generated questionnaire in a base64 encoded format. */ content?: string; /** * 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 declare function getPciQuestionnaireById(client: AdyenClient, legalEntityId: string, pciId: string): Promise; //# sourceMappingURL=get-pci-questionnaire-by-id.d.mts.map