import { Ref } from 'vue';
export declare function useRouteParam(param: string, useFirstIfArray?: true): Ref<string>;
export declare function useRouteParam(param: string, useFirstIfArray: false): Ref<string | string[]>;
