/** * Generate a unique id in specified scope. * The id text uses the `scope` as prefix. * * @param scope Optional scope for the counter. Default is `id__` * @returns The id text with `scope` as prefix. */ export declare function generateId(scope?: string): string; /** * Reset id counter to an (optional) number. * * @param scope The scope for the counter. * @param value the optional number value. Default is `0`. */ export declare function resetId(scope?: string, value?: number): void; //# sourceMappingURL=id.d.ts.map