/// <reference types="react" />
import { SidebarProps } from './type';
declare const Sidebar: {
    ({ as, className, direction, inverted, vertical, visible, animation, children, ...props }: SidebarProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
    displayName: string;
    Pushable: ({ as, className, content, children, ...props }: import("./type").SidebarPushableProps) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
    Pusher: ({ as, className, dimmed, content, children, ...props }: import("./type").SidebarPusherProps) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
};
export default Sidebar;
