subhasmitalmg-react-spreadsheet-import
Version:
React spreadsheet import for xlsx and csv files with column matching and validation steps
13 lines (12 loc) • 529 B
TypeScript
/// <reference types="react" />
import type { RsiProps } from "../types";
import type { CustomTheme } from "../theme";
export declare const RsiContext: import("react").Context<any>;
type ProvidersProps<T extends string> = {
children: React.ReactNode;
theme: CustomTheme;
rsiValues: RsiProps<T>;
};
export declare const rootId = "chakra-modal-rsi";
export declare const Providers: <T extends string>({ children, theme, rsiValues }: ProvidersProps<T>) => import("react/jsx-runtime").JSX.Element;
export {};