/** * Programmatically update the value of an input AND trigger the onChange event */ export declare function triggerChange(input: HTMLInputElement | null | undefined, value: string): void; /** * Write to clipboard with legacy browser fallback */ export declare function writeToClipboard(text: string): Promise;