carbon-react
Version:
A library of reusable React components for easily building user interfaces.
14 lines (13 loc) • 510 B
TypeScript
import { VariantType } from "../menu-item";
import type { MenuType } from "../menu.types";
interface StyledTitleProps {
variant?: VariantType;
menuType: MenuType;
shouldWrap?: boolean;
}
declare const StyledTitle: import("styled-components").StyledComponent<"h2", any, StyledTitleProps, never>;
declare const StyledSegmentChildren: import("styled-components").StyledComponent<"ul", any, {
variant?: VariantType;
menuType: MenuType;
}, never>;
export { StyledTitle, StyledSegmentChildren };