declare type serialisationType = "string" | "object" | "array" | "json" | "any";
export declare function useUrlParam<T>(param: string, defaultValue: T, type?: serialisationType): [T, (nextValue: T) => void];
export {};
