//#region src/utilities/copy-feedback.d.ts /** Where the transient feedback appears, or `hidden` to suppress it entirely. */ export type CopyFeedbackPlacement = "top" | "right" | "bottom" | "left" | "hidden"; /** * Flashes the transient "Copied" / "Error" message that `` and `` show after writing to * the clipboard. Both elements render the same feedback chrome from `copy.styles.ts`, so they announce it the same * way: position it against the host, animate it in, then take it back out of the top layer. * * @param host The element the feedback is positioned against. * @param feedback The feedback element inside the host's shadow root. * @param message The text to announce. * @param placement Where to place the feedback relative to the host. */ export declare function showCopyFeedback(host: Element, feedback: HTMLElement, message: string, placement: CopyFeedbackPlacement): Promise; //#endregion