import IBase from '../Base'; import { UserPopulate } from '../User/User'; export default interface IOrganization extends IBase { name?: string; deletable?: boolean; } export declare class OrganizationPopulate implements IOrganization { _id: string; name: string; } export declare class OrganizationRequest implements IOrganization { name: string; deletable?: boolean; /** * @TJS-type object */ props?: any; /** * @TJS-type object */ extendedProps?: any; } export declare class OrganizationResponse implements IOrganization { _id: string; name: string; deletable?: boolean; props?: any; extendedProps?: any; createdAt?: IBase['createdAt']; createdBy?: UserPopulate | string; updatedAt?: IBase['updatedAt']; updatedBy?: UserPopulate | string; }