1 | import { InjectionToken, TemplateRef, Type } from '@angular/core';
|
2 | export interface ClipboardOptions {
|
3 | buttonComponent?: Type<unknown>;
|
4 | }
|
5 | export interface ClipboardRenderOptions extends ClipboardOptions {
|
6 | buttonTemplate?: TemplateRef<unknown>;
|
7 | }
|
8 | export declare const CLIPBOARD_OPTIONS: InjectionToken<ClipboardOptions>;
|