import { CSSProperties } from 'react'; import { MantineTheme } from '../../../MantineProvider'; import { GetStylesApiOptions } from '../../styles-api.types'; export type _Styles = undefined | Partial> | ((theme: MantineTheme, props: Record, ctx: Record | undefined) => Partial>); export interface GetStyleInput { theme: MantineTheme; selector: string; rootSelector: string; options: GetStylesApiOptions | undefined; props: Record; stylesCtx: Record | undefined; withStylesTransform?: boolean; resolvedStyles: Record; resolvedThemeStyles: Record; resolvedVars: Record; resolvedRootStyle: CSSProperties; } export declare function getStyle({ theme, selector, options, props, stylesCtx, rootSelector, withStylesTransform, resolvedStyles, resolvedThemeStyles, resolvedVars, resolvedRootStyle, }: GetStyleInput): CSSProperties;