import { ToastStates, ToastProps } from './interface'; export declare function createToastStore({ maxCount }?: { maxCount?: number; }): { getState: () => ToastStates; subscribe: (listener: any) => () => void; add: (noticeProps: ToastProps) => string; update: (id: ToastProps["id"], options: ToastProps) => void; clearAll: () => void; remove: (id: string) => void; maxCount: number; };