export interface State {
    tx_id: string;
    type: string;
    result: any;
    error: string | null;
}
export declare const initialState: State;
