/** * Returns a new unique ID generator. * @param prefix An optional prefix that will be prepended to all ids * @returns A new function that will generate unique id strings */ export declare const idGenerator: (prefix?: string) => (postfix?: string | undefined) => string;