import type { App } from 'vue'; import type { SDOptions } from '../_utils/types'; import _Copy from './copy.vue'; declare const Copy: import("vue").DefineSetupFnComponent, {}, {}, Record & {}, import("vue").PublicProps> & (new () => { $slots: { icon?: (props: {}) => any; } & { default?: (props: {}) => any; }; }) & { install: (app: App, options?: SDOptions) => void; }; export type CopyInstance = InstanceType; export type { CopyButtonProps, CopyComponentType, CopyLinkProps, CopyProps } from './types'; export default Copy;