import { CSSProperties } from 'vue';
export interface ApCopy {
text?: string;
size?: number;
textStyle?: 'major' | 'minor' | 'link' | CSSProperties;
link?: string | boolean;
disableCopy?: boolean;
onClick?: () => void;
tipMessageSuccess?: string;
tipMessageError?: string;
}