/** * Generate a nanoid with a hex alphabet */ export declare const nanoidHex: (size?: number) => string; /** * Generate a nanoid with a hex alphabet that is a valid UUIDv4 */ export declare function nanoidUUIDv4(): string;