UNPKG

@progress/kendo-react-common

Version:

React Common package delivers common utilities that can be used with the KendoReact UI components. KendoReact Common Utilities package

21 lines (20 loc) 1.16 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { AnimationsClassStructure, ButtonsClassStructure, IconsClassStructure, DateInputsClassStructure, DropDownsClassStructure, GridClassStructure, InputsClassStructure, LabelsClassStructure, FormClassStructure, PopupClassStructure } from './interfaces/common.js'; import * as React from 'react'; interface AllClassStructure extends AnimationsClassStructure, ButtonsClassStructure, DropDownsClassStructure, GridClassStructure, IconsClassStructure, LabelsClassStructure, FormClassStructure, PopupClassStructure, InputsClassStructure, DateInputsClassStructure { } /** * UnstyledContext */ export declare const UnstyledContext: React.Context<AllClassStructure | undefined>; /** * useUnstyled */ export declare const useUnstyled: () => AllClassStructure | undefined; export {};