import { Model } from '@topwrite/common'; interface StateType { status: 'ready' | 'abort' | string; message?: string; } declare class State extends Model { readonly initialState: { status: string; }; } export declare const state: State; export {};