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