import VueType from 'vue';

declare const ExposurePLugin: {
    install: InstallHandlerType;
};
export default ExposurePLugin;

declare interface InstallHandlerType {
    (_Vue: typeof VueType, options?: {
        threshold?: number;
    }): void;
}

export declare const useResetExposure: (el?: Element | undefined) => void;

export { }
