UNPKG

carbon-react

Version:

A library of reusable React components for easily building user interfaces.

28 lines (27 loc) 1.19 kB
export declare const StyledSidebarTitle: import("styled-components").StyledComponent<"div", any, { stickyHeader?: boolean; }, never>; export declare const StyledSidebarFooter: import("styled-components").StyledComponent<"div", any, { stickyFooter?: boolean; }, never>; declare const StyledDrawerSidebar: import("styled-components").StyledComponent<"div", any, {}, never>; interface StyledDrawerContentProps { animationDuration?: string; backgroundColor?: string; expandedWidth?: string; isExpanded?: boolean; showControls?: boolean; } declare const StyledDrawerContent: import("styled-components").StyledComponent<"aside", any, StyledDrawerContentProps, never>; interface StyledSidebarToggleButtonProps { isExpanded?: boolean; } declare const StyledSidebarToggleButton: import("styled-components").StyledComponent<"button", any, { theme: object; } & { type: "button"; } & StyledSidebarToggleButtonProps, "theme" | "type">; declare const StyledDrawerWrapper: import("styled-components").StyledComponent<"div", any, { height?: string; }, never>; export { StyledDrawerWrapper, StyledDrawerContent, StyledDrawerSidebar, StyledSidebarToggleButton, };