import type { CollectionName } from './CollectionName';
import type { Property } from './Property';
export type Collection = {
    /**
     * The time when the collection was created, in RFC3339Nano format.
     * Vault sets this value automatically.
     * Sending a value for this field is ignored.
     *
     */
    creation_time?: string;
    /**
     * The time when the collection was last modified, in RFC3339Nano format.
     * Vault sets this value automatically.
     * Sending a value for this field is ignored.
     *
     */
    modification_time?: string;
    name: CollectionName;
    properties: Array<Property>;
    /**
     * The schema prototype the collection is based on.
     */
    type: 'PERSONS' | 'DATA';
};
//# sourceMappingURL=Collection.d.ts.map