import { UUIEvent } from '@umbraco-ui/uui-base/lib/events'; import { UUIButtonCopyTextElement } from './uui-button-copy-text.element'; export declare class UUICopyTextEvent extends UUIEvent<{ text: string; }, UUIButtonCopyTextElement> { static readonly COPIED: string; static readonly COPYING: string; /** * The text content that is about to be copied to the clipboard */ text: string | null; }