export interface ShowExtendModalParams { cells: { image: string; title: string; content: string; }[]; buttonLabels: string[]; } declare function showExtendModal(args: ShowExtendModalParams): Promise<{ buttonIndex: number; }>; declare namespace showExtendModal { var version: { android: string; ios: string; }; } export default showExtendModal;