@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
16 lines (15 loc) • 661 B
TypeScript
import { BoxProps, ElementProps, Factory, StylesApiProps } from '../../../core';
import type { AppShellCompoundProps } from '../AppShell.types';
export type AppShellNavbarStylesNames = 'navbar';
export interface AppShellNavbarProps extends BoxProps, AppShellCompoundProps, StylesApiProps<AppShellNavbarFactory>, ElementProps<'div'> {
}
export type AppShellNavbarFactory = Factory<{
props: AppShellNavbarProps;
ref: HTMLElement;
stylesNames: AppShellNavbarStylesNames;
}>;
export declare const AppShellNavbar: import("../../..").MantineComponent<{
props: AppShellNavbarProps;
ref: HTMLElement;
stylesNames: AppShellNavbarStylesNames;
}>;