import { Constructor } from './index'; export declare function UuidMixin(Base: TBase): { new (...args: any[]): { _uuid?: string | undefined; readonly uuid: string; readonly uid: string; }; } & TBase;