import { INotification } from '../notification.type';
export declare type IAbortNotification<GAbort = any> = INotification<'abort', GAbort>;
export declare function createAbortNotification<GAbort>(abort: GAbort): IAbortNotification<GAbort>;
