import type { App } from 'vue';
export declare interface Browser {
    screen: string;
    isMini: boolean;
}
export declare function useBrowser(app?: App): {
    screen: string;
    isMini: boolean;
};
