@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
17 lines (16 loc) • 616 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '../../../core';
export type AppShellMainStylesNames = 'main';
export interface AppShellMainProps extends BoxProps, CompoundStylesApiProps<AppShellMainFactory>, ElementProps<'main'> {
}
export type AppShellMainFactory = Factory<{
props: AppShellMainProps;
ref: HTMLElement;
stylesNames: AppShellMainStylesNames;
compound: true;
}>;
export declare const AppShellMain: import("../../../core").MantineComponent<{
props: AppShellMainProps;
ref: HTMLElement;
stylesNames: AppShellMainStylesNames;
compound: true;
}>;