UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

16 lines (15 loc) 664 B
import { BoxProps, ElementProps, Factory, StylesApiProps } from '../../../core'; import { AppShellCompoundProps } from '../AppShell.types'; export type AppShellFooterStylesNames = 'footer'; export interface AppShellFooterProps extends BoxProps, AppShellCompoundProps, StylesApiProps<AppShellFooterFactory>, ElementProps<'footer'> { } export type AppShellFooterFactory = Factory<{ props: AppShellFooterProps; ref: HTMLElement; stylesNames: AppShellFooterStylesNames; }>; export declare const AppShellFooter: import("../../../core").MantineComponent<{ props: AppShellFooterProps; ref: HTMLElement; stylesNames: AppShellFooterStylesNames; }>;