import { Controller } from "@hotwired/stimulus"; export default class Clipboard extends Controller { hasButtonTarget: boolean; originalContent: string; successDurationValue: number; successContentValue: string; timeout: number; buttonTarget: HTMLElement; sourceTarget: HTMLInputElement; static targets: string[]; static values: { successContent: StringConstructor; successDuration: { type: NumberConstructor; default: number; }; }; connect(): void; copy(event: Event): void; copied(): void; }