type Primitive = bigint | string | number | boolean | null | undefined;
/** Serialize an object to URLSearchParams, filtering undefined values, and handling arrays to the expected format */
export declare function serializeApiParams(struct: Record<string, Primitive | Primitive[]>): URLSearchParams;
export {};
