carbon-react
Version:
A library of reusable React components for easily building user interfaces.
17 lines (16 loc) • 612 B
TypeScript
import type { MenuType } from "../menu.types";
declare const StyledMenuFullscreen: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & {
transitionDuration: number;
startPosition: "left" | "right";
}, "theme">;
declare const StyledMenuModal: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & {
menuType: MenuType;
}, "theme">;
declare const StyledMenuFullscreenHeader: import("styled-components").StyledComponent<"div", any, {
menuType: MenuType;
}, never>;
export { StyledMenuModal, StyledMenuFullscreen, StyledMenuFullscreenHeader };