23 lines
387 B
TypeScript
23 lines
387 B
TypeScript
export interface UikitRemoteSetupOptions {
|
|
React?: any;
|
|
createRoot?: any;
|
|
|
|
ChakraProvider?: any;
|
|
|
|
Badge?: any;
|
|
Button?: any;
|
|
HStack?: any;
|
|
IconButton?: any;
|
|
Input?: any;
|
|
Text?: any;
|
|
|
|
deps?: Record<string, any>;
|
|
|
|
theme?: any;
|
|
chakraProviderProps?: Record<string, any>;
|
|
}
|
|
|
|
export declare function setupUikitRemoteDeps(
|
|
options?: UikitRemoteSetupOptions,
|
|
): void;
|