import { Ref, ComputedRef } from 'vue'; type UseButtonBackground = (colorComputed: Ref, isPressed: Ref, isHovered: Ref) => { backgroundMaskOpacity: ComputedRef; backgroundMaskColor: ComputedRef; backgroundColor: ComputedRef; backgroundColorOpacity: ComputedRef; }; export declare const useButtonBackground: UseButtonBackground; export {};