import { DocumentMetadata } from "./document-metadata.model";
import { PageInfo } from "./page-info.model";
import { User } from "./user.data.model";
export declare class OrganizationMetadata {
    /**
     * Unique organization id generated from client organization id
     */
    organizationId?: string;
    /**
     * API key
     */
    apiKey?: string;
    /**
     * Document id provided by client
     */
    clientOrganizationId?: string | number;
    /**
     * Page metadata
     */
    pageInfo?: PageInfo;
    /**
     *
     */
    documents?: {
        [documentId: number]: DocumentMetadata;
    };
    /**
     * Organization creator
     */
    creator?: User;
}
