export declare function randomBytes(length: number): string; interface NamedIdProps { id?: string; length?: number; prefix?: string; suffix?: string; } export default function namedId(props?: NamedIdProps | string): string; export {};