/** * Reactive Clipboard API. Provides the ability to respond to clipboard commands. * */ export declare function useClipboard(options?: { sync?: boolean; }): { text: import("nativescript-vue").Ref; copied: import("nativescript-vue").Ref; copy: (text: string) => void; read: () => string; };