/**
 * Генерация ключа uuidv4
 */
export declare class UUID {
    static get(): string;
}
export interface IWithId {
    id: string;
}
