import { DocType, DocumentStatus } from '../../enum';
export interface IDocumentFindAll {
    DocNo?: string;
    DocType?: DocType;
    StartDate?: Date;
    EndDate?: Date;
    IssuedToId?: string;
    IssuedToType?: string;
    Status?: DocumentStatus;
    RelatedObjectId?: string;
    RelatedObjectType?: string;
    Description?: string;
    DocumentItems?: {
        Name?: string;
        ItemId?: string;
        ItemType?: string;
    };
}
//# sourceMappingURL=document-find-all.interface.d.ts.map