export interface ClipboardCopyOptions { successText?: string; successDuration?: number; errorText?: string; onSuccess?: (text: string) => void; onError?: (error: Error) => void; } export declare class ClipboardHelper { static copyCodeFromButton(button: HTMLButtonElement): void; static attachToButtons(selector?: string): void; static copyById(codeId: string): void; } //# sourceMappingURL=ClipboardHelper.d.ts.map