import { ComputedRef, Ref } from 'vue';
export declare const useSmartAppBanner: (emit: any) => {
    title: string;
    author: string;
    buttonText: string;
    showBanner: Ref<boolean>;
    storeLink: ComputedRef<string>;
    inStoreText: ComputedRef<string>;
    dismissClick: () => void;
    installClick: () => void;
    iconStyle: ComputedRef<string>;
    mainContainerClass: ComputedRef<string>;
};
