export type Id = string | number;
export type Key = Id;
export type Code = Id;
export type HasId = {
    id: Id;
};
export declare const toId: () => Id;
