import { IToastContainerProps } from '@/interfaces'; export declare const useToastManager: () => { info: ({ title, ...props }: IToastContainerProps) => void; warning: ({ title, ...props }: IToastContainerProps) => void; error: ({ title, ...props }: IToastContainerProps) => void; success: ({ title, ...props }: IToastContainerProps) => void; };