import 'vue';
declare module '@vue/runtime-core' {
    interface ComponentCustomProperties {
        $formatter: (value: any, list: Array<any>, options?: string | {
            value: string;
            label: string;
        }) => any;
        $go: (url: string, replace?: boolean) => void;
        $back: (n?: number) => void;
        $open: (url: string, target?: string) => void;
        $fullUrl: (url: string) => string;
    }
}
export {};
