UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

11 lines (10 loc) 370 B
interface UseTransformedStylesInput { props: Record<string, any>; stylesCtx: Record<string, any> | undefined; themeName: string[]; } export declare function useStylesTransform({ props, stylesCtx, themeName }: UseTransformedStylesInput): { getTransformedStyles: (styles: any[]) => Record<string, string>[]; withStylesTransform: boolean; }; export {};