import type { ToggleAnimations } from "./types/general.type"; import type { NotifyTextBoxProps } from "./types/notify.type"; import type { SheetProps } from "./types/sheet.type"; declare type SheetTypes = SheetProps['type']; declare const Gamon: { notify: (text: string | string[], type?: NotifyTextBoxProps['type'], duration?: number, animation?: ToggleAnimations) => void; confirm: (title: string, text: string, confirmCallback: () => void, cancelCallback?: () => void, animation?: ToggleAnimations, type?: SheetTypes, confirmButtonText?: string, cancelButtonText?: string) => void; }; export default Gamon;