react-pro-sidebar-crewos
Version:
high level and customizable side navigation
15 lines (14 loc) • 596 B
TypeScript
/// <reference types="react" />
import { CSSObject } from '@emotion/styled';
interface StyledMenuPrefixProps {
firstLevel?: boolean;
collapsed?: boolean;
transitionDuration?: number;
rtl?: boolean;
rootStyles?: CSSObject;
}
export declare const StyledMenuPrefix: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme | undefined;
as?: import("react").ElementType<any> | undefined;
} & StyledMenuPrefixProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
export {};