export interface IOptions {
    castParam?: boolean;
}
declare const getQueryParams: (value_?: string, paramName?: string, options_?: IOptions) => object | string | number | boolean | undefined;
export default getQueryParams;
