/** * Decodes a string id into an int. Returns null if an invalid ID. */ export declare const decodeHashId: (id: string) => number | null; /** * Encodes an int to a string based hashid */ export declare const encodeHashId: (id: number | null) => string | null;