import type { ComponentOptions } from 'vue';
export declare const getFullUrl: (url: string) => string;
export declare const setBaseUrl: (url: string) => void;
export declare const getBaseUrl: () => string;
export declare const setFormatSelectOptions: ({ value, label }?: {
    value?: string | undefined;
    label?: string | undefined;
}) => void;
export declare const formatSelect: (val: null | undefined | string | number, list: Array<any>, options: string | {
    label: string;
    value: string;
}) => any;
declare const common: ComponentOptions;
export default common;
