export defaultclassUid {
/**
* Count to create a unique id.
*/privatestatic count;
/**
* Prefix string to be used for the id.
*/privatestatic prefix;
/**
* Generate an UUID.
*/staticmake(): string;
/**
* Reset the count to 0.
*/staticreset(): void;
}