import * as React from "react";
import { SelectCallback } from "react-bootstrap";

declare namespace PanelFooter {
    export interface PanelFooterProps extends React.HTMLProps<PanelFooter> {
        bsClass?: string | undefined;
    }
}
declare class PanelFooter extends React.Component<PanelFooter.PanelFooterProps> {}
export = PanelFooter;
