import { type ClassValue } from "clsx";
export declare function cn(...inputs: ClassValue[]): string;
export declare function arrayToObjectEntries(array: (string | {
    field: string;
})[]): Record<string, Record<string, unknown>>;
export declare function prettyPrintURL(url: string): string;
export declare function autoUnwrap<E>(item?: E | {
    raw?: E;
}): E | {
    raw?: E;
};
export declare function autoUnwrapArray<E>(item?: E[] | {
    raw?: E[];
}): string[] | E[];
export declare function toArray<E>(element: E | E[]): E[];
export declare function parseStringValueToNumber(value: string): number;
