import { DefaultTheme } from "styled-components"; export interface Props { secondary?: boolean; isPushed?: boolean; isActive?: boolean; theme: DefaultTheme; } declare const LinkLabel: import("styled-components").StyledComponent<"div", DefaultTheme, { isActive: boolean | undefined; isPushed: boolean | undefined; }, never>; declare const MenuEntry: import("styled-components").StyledComponent<"div", DefaultTheme, Props, never>; export { MenuEntry, LinkLabel };