import * as React from "react";
import { BGColorVariant } from "../types";
export interface SidebarProps {
    isOpen: boolean;
    backgroundColor?: BGColorVariant;
    logo?: string;
    logoHeight?: number;
    logoWidth?: number;
    logoAlt?: string;
    onToggle: (state: boolean) => void;
    menuChildren: React.ReactNode;
    contentChildren: React.ReactNode;
}
declare const Sidebar: React.FC<SidebarProps>;
export default Sidebar;
