declare module 'react-native-quick-actions' { export interface ShortcutItem { type: string; title: string; subtitle?: string; icon: string; userInfo: { url: string } androidInfo?: { className?: string } } export function popInitialAction(): Promise; export function setShortcutItems(shortcutItems: Array): void; export function clearShortcutItems(): void; export function isSupported(callback: (error: Error | any, supported: boolean) => void): void; }