import { Alert, Options } from './types/Alert'; declare const useSnapAlerts: () => { show: (message: string, options?: Options) => void; hide: (id: number) => void; clear: () => void; alerts: Alert[]; }; export default useSnapAlerts; //# sourceMappingURL=useSnapAlert.d.ts.map