/// import './index.less'; import ConsoleMenu from './ConsoleMenu'; import { SubMenu, Item, Divider } from './styles'; /** * @public */ declare const StyledComponents: { SubMenu: import("styled-components").StyledComponent; Item: import("styled-components").StyledComponent; Divider: import("styled-components").StyledComponent; Header: import("styled-components").StyledComponent<"h2", any, {}, never>; Menu: import("styled-components").StyledComponent<({ fusionPrefix, theme, ...props }: any) => import("react").JSX.Element, any, { fusionPrefix: string; }, never>; SecondaryMenu: import("styled-components").StyledComponent<({ fusionPrefix, theme, ...props }: any) => import("react").JSX.Element, any, { fusionPrefix: string; }, never>; }; /** * @public */ export type IConsoleMenu = typeof ConsoleMenu & { Item: typeof Item; SubMenu: typeof SubMenu; Divider: typeof Divider; }; /** * @public */ declare const ExportedConsoleMenu: IConsoleMenu; export default ExportedConsoleMenu; export * from './ConsoleMenu'; export { ConsoleMenu }; export * from './ItemDescriptor'; export { Item, SubMenu, Divider, StyledComponents }; export type { IConsoleMenuProps } from './types/IConsoleMenuProps.type'; export type { IItemDescriptor } from './types/IItemDescriptor.type'; export type { IRoutableItemDescriptor } from './types/IRoutableItemDescriptor.type'; export type { IRoutableMenuProps } from './types/IRoutableMenuProps.type'; export { HybridCloudLightTheme } from './theme/hybridcloud-light'; export { HybridCloudDarkTheme } from './theme/hybridcloud-dark'; export { XConsoleTheme } from './theme/xconsole'; export { WindTheme } from './theme/wind'; export { XConsoleDarkTheme } from './theme/xconsole-dark'; //# sourceMappingURL=index.d.ts.map