/// <reference types="react" />
import * as React from "react";
import { Component } from "react";
import * as ReactRedux from "react-redux";
export interface LogoutProps {
    readonly children?: any;
    readonly dispatch?: ReactRedux.Dispatch<any>;
}
export declare class FirebaseLogout extends Component<LogoutProps & ReactRedux.DispatchProp<any>, {}> {
    logout: () => void;
    render(): React.ReactElement<any>;
}
declare const _default: React.ComponentClass<Pick<LogoutProps & ReactRedux.DispatchProp<any>, "children">>;
export default _default;
