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 };