import { ToastIntent } from "@fluentui/react-components";
export declare function useToast(): {
    control: import("react/jsx-runtime").JSX.Element;
    dispatch: (info: {
        title?: string;
        body?: string;
        subtitle?: string;
        titleAction?: {
            text: string;
            onClick: () => void;
        };
        footerActions?: {
            text: string;
            onClick: () => void;
        }[];
        intent?: ToastIntent;
    }) => void;
};
