export interface RandomCuid2Options { /** * The fingerprint to use in the CUID. * Must be unique to the application. */ fingerprint: string; /** * The length of the CUID. * @default 24 */ length?: number; } export declare function randomCuid2(options: RandomCuid2Options): Promise;