import { ButtonProps } from 'element-plus'; import { type SlotsType, type ExtractPropTypes, PropType } from 'vue'; export declare const copyProps: { text: { type: StringConstructor; }; color: { type: StringConstructor; }; type: { type: PropType; default: string; }; }; export type CopyProps = ExtractPropTypes; export interface CopySlots { default: {}; } export declare const copySlots: SlotsType;