import type { OneToThree, PopupButton, PopupParams } from '../types/telegram-webapp'; type ClickablePopupButton = { id?: PopupButton['id']; text?: PopupButton['text']; type?: PopupButton['type']; onClick?: () => void; }; export type PopupProps = { title?: PopupParams['title']; message: PopupParams['message']; onButtonClick?: (id: string) => void; buttons: OneToThree; }; export declare function Popup(props: PopupProps): any; export {};