import type { Plugin } from "vue"; export interface Watermark { text?: string; font?: string; x?: number; y?: number; sx?: number; sy?: number; fillStyle?: string; strokeStyle?: string; style?: "all" | "stroke" | "fill"; } export type SFCWithInstall = T & Plugin; export declare function withInstall(c: T): SFCWithInstall;