///
import * as React from 'react';
export interface SidebarProps {
onHide: () => void;
isVisible?: boolean;
side?: string;
header?: any;
}
export declare class Sidebar extends React.Component {
static displayName: string;
static defaultProps: Partial;
render(): JSX.Element;
}