import React from "react";
interface MasterContextProviderProps extends React.PropsWithChildren, Omit<MasterContextType, "masterTranslations"> {
    masterTranslations?: Partial<MasterTranslations>;
}
declare const MasterContextProvider: ({ languages, formState, closeForm, loading, onChangeFormState, onDataSubmit, updateData, canAdd, canUpdate, currentPage, limits, pageSize, setCurrentPage, setPageSize, totalPages, totalRecords, canList, columns, allDataList, data, getMastersList, onUpdate, setSortConfig, sortConfig, sortable, canDelete, canPartialUpdate, loader, searchStr, masterTranslations, setSearchStr, children, }: MasterContextProviderProps) => JSX.Element;
export declare function useMasterState(): MasterContextType;
export default MasterContextProvider;
