import React from 'react'; export declare const SIDEBAR_CARD_CLASS = "card mb-3"; export declare const SIDEBAR_LIST_GROUP_ITEM_ACTION_CLASS = "list-group-item list-group-item-action py-2"; export declare const SIDEBAR_BUTTON_CLASS = "btn btn-secondary d-block w-100 my-2"; /** * Item of `SideBarGroupItems`. */ export declare const SidebarNavItem: React.SFC<{ to: string; exact?: boolean; className?: string; }>; /** * Header of a `SideBarGroup` */ export declare const SidebarGroupHeader: React.SFC<{ icon?: React.ComponentType<{ className?: string; }>; label: string; children?: undefined; }>; /** * A box of items in the side bar. Use `SideBarGroupHeader` and `SideBarGroupItems` as children. */ export declare const SidebarGroup: React.SFC<{}>; /** * Container for all `SideBarNavItem` in a `SideBarGroup`. */ export declare const SidebarGroupItems: React.SFC<{}>; //# sourceMappingURL=Sidebar.d.ts.map