interface ExtraProps { selected?: boolean; showLabel?: boolean; } /** * * Demos: * * - [Bottom Navigation](https://mui.com/components/bottom-navigation/) * * API: * * - [BottomNavigationAction API](https://mui.com/api/bottom-navigation-action/) * - inherits [ButtonBase API](https://mui.com/api/button-base/) */ declare const BottomNavigationAction: import("@suid/types").OverridableComponent<{ name: "MuiBottomNavigationAction"; selfProps: { children?: import("solid-js").JSXElement; classes?: Partial; icon?: import("solid-js").JSXElement; label?: import("solid-js").JSXElement; showLabel?: boolean; sx?: import("@suid/system").SxProps; value?: any; }; } & import("../ButtonBase").ExtendButtonBaseTypeMap<{ props: { children?: import("solid-js").JSXElement; classes?: Partial; icon?: import("solid-js").JSXElement; label?: import("solid-js").JSXElement; showLabel?: boolean; sx?: import("@suid/system").SxProps; value?: any; }; defaultComponent: "div"; }> & { props: ExtraProps; }>; export default BottomNavigationAction; //# sourceMappingURL=BottomNavigationAction.d.ts.map