import React from 'react'; import { Theme } from '@mui/material/styles'; import { SchemasType } from '../@types'; export interface ServerEndPoint { url: string; apiTokenUrl: string; api?: string; signUp?: string; autocomplete?: string; getToken?: string; refreshToken?: string; verifyToken?: string; media?: string; requestPasswordReset?: string; confirmPasswordReset?: string; changePassword?: string; } interface DRFReactBySchemaContextType { serverEndPoint: ServerEndPoint | null; theme: Theme; isInBatches?: boolean; firstBatchLength?: number; schemas?: SchemasType; } export interface DRFReactBySchemaProviderProps extends DRFReactBySchemaContextType { children: React.ReactNode; } export declare const DRFReactBySchemaContext: React.Context; export declare const useDRFReactBySchema: () => DRFReactBySchemaContextType; export {}; //# sourceMappingURL=DRFReactBySchemaContext.d.ts.map