@mantine/dates
Version:
Calendars, date and time pickers based on Mantine components
17 lines (16 loc) • 631 B
TypeScript
import { BoxProps, ElementProps, Factory, MantineSize, StylesApiProps } from '@mantine/core';
export type LevelsGroupStylesNames = 'levelsGroup';
export interface LevelsGroupProps extends BoxProps, StylesApiProps<LevelsGroupFactory>, ElementProps<'div'> {
__staticSelector?: string;
size?: MantineSize;
}
export type LevelsGroupFactory = Factory<{
props: LevelsGroupProps;
ref: HTMLDivElement;
stylesNames: LevelsGroupStylesNames;
}>;
export declare const LevelsGroup: import("@mantine/core").MantineComponent<{
props: LevelsGroupProps;
ref: HTMLDivElement;
stylesNames: LevelsGroupStylesNames;
}>;