import * as React from 'react'; import type { alert } from './types'; type context = { showAlert: (data: alert) => void; }; export declare const AlertProvider: ({ children }: React.PropsWithChildren) => React.JSX.Element; export declare const useAlert: () => context; export {};