import { NotifyTextBoxProps } from "./notify.type"; import { SheetProps } from "./sheet.type"; declare type StyleObject = { [index: string]: string; }; declare type ToggleAnimations = 'slide-up' | 'slide-down' | 'slide-left' | 'slide-right' | 'fade' | 'scale' | 'rotate'; declare type Confirm = (title: string, text: string, confirmCallback: () => void, cancelCallback?: () => void, animation?: ToggleAnimations, type?: SheetProps['type'], confirmButtonText?: string, cancelButtonText?: string) => void; declare type Notify = (text: string, type?: NotifyTextBoxProps['type'], duration?: number, animation?: ToggleAnimations) => void; export { ToggleAnimations, Confirm, Notify, StyleObject, };