export interface ConfirmParams { message: string; title: string; buttonLabels: string[]; } export interface ConfirmResult { buttonIndex?: number; } declare function confirm(params: ConfirmParams): Promise; declare namespace confirm { var version: { android: string; ios: string; pc: string; }; } export default confirm;