import { Theme } from '@mui/material/styles'; import { PropsWithChildren } from 'react'; import { CreateProps, Identifier, RaRecord } from 'react-admin'; import { UseQueryOptions } from 'react-query'; type ICreateProps = any, ResultRecordType extends RaRecord = RecordType & { id: Identifier; }> = CreateProps & PropsWithChildren<{ useDefaults?: boolean; queryOptions?: UseQueryOptions; }>; type IResourceDefaultValue = object; declare const Create: import('@emotion/styled').StyledComponent & { useDefaults?: boolean; queryOptions?: UseQueryOptions; } & { children?: import('react').ReactNode | undefined; }, "children" | "queryOptions" | "useDefaults" | keyof CreateProps> & import('@mui/system').MUIStyledCommonProps, {}, {}>; declare function useResourceDefaultValues(): IResourceDefaultValue; export { Create, useResourceDefaultValues }; export type { ICreateProps, IResourceDefaultValue }; //# sourceMappingURL=Create.d.ts.map