UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

11 lines (10 loc) 409 B
import { MantineTheme } from '../../../../MantineProvider'; interface GetThemeClassNamesOptions { theme: MantineTheme; themeName: string[]; selector: string; props: Record<string, any>; stylesCtx: Record<string, any> | undefined; } export declare function getThemeClassNames({ themeName, theme, selector, props, stylesCtx, }: GetThemeClassNamesOptions): (string | undefined)[]; export {};