import * as React from 'react'; import { BoxProps } from '../Box/index'; export interface SidebarProps { footer?: React.ReactNode; header?: React.ReactNode; } type divProps = Omit; export interface SidebarExtendedProps extends BoxProps, SidebarProps, divProps {} declare const Sidebar: React.FC; export { Sidebar };