UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

16 lines (15 loc) 669 B
import { BoxProps, ElementProps, Factory, StylesApiProps } from '../../../core'; import type { AppShellCompoundProps } from '../AppShell.types'; export type AppShellHeaderStylesNames = 'header'; export interface AppShellHeaderProps extends BoxProps, AppShellCompoundProps, StylesApiProps<AppShellHeaderFactory>, ElementProps<'header'> { } export type AppShellHeaderFactory = Factory<{ props: AppShellHeaderProps; ref: HTMLElement; stylesNames: AppShellHeaderStylesNames; }>; export declare const AppShellHeader: import("../../../core").MantineComponent<{ props: AppShellHeaderProps; ref: HTMLElement; stylesNames: AppShellHeaderStylesNames; }>;