import { PropType } from 'vue'; export declare const usePressedStyleProps: { pressedBehavior: { type: PropType<"opacity" | "mask">; default: string; validator: (value: string) => boolean; }; pressedOpacity: { type: NumberConstructor; default: number; }; pressedMaskColor: { type: StringConstructor; default: string; }; };