import type { ConfigurationDocument } from './configuration-document.js'; /** * Representation of the 'ListConfigurationDocuments' schema. */ export type ListConfigurationDocuments = { /** * Total number of documents returned. * @example 1 */ count?: number; /** * List of document objects. It will be empty array if no records found. */ resources?: ConfigurationDocument[]; } & Record; //# sourceMappingURL=list-configuration-documents.d.ts.map