5 lines
270 B
TypeScript
5 lines
270 B
TypeScript
import type { MenuSubContentStaticProps } from "../types.js";
|
|
declare const MenuSubContentStatic: import("svelte").Component<MenuSubContentStaticProps, {}, "ref">;
|
|
type MenuSubContentStatic = ReturnType<typeof MenuSubContentStatic>;
|
|
export default MenuSubContentStatic;
|