import * as React from 'react'; import { RaRecord, EditBaseProps } from 'ra-core'; import { EditViewProps } from './EditView'; /** * Page component for the Edit view * * The `` component renders the page title and actions, * fetches the record from the data provider. * It is not responsible for rendering the actual form - * that's the job of its child component (usually ``), * to which it passes the `record` as prop. * * The component accepts the following props: * * - actions * - aside * - component * - title * - mutationMode * - mutationOptions * * @example * * // in src/posts.js * import * as React from "react"; * import { Edit, SimpleForm, TextInput } from 'react-admin'; * * export const PostEdit = () => ( * * * * * * ); * * // in src/App.js * import * as React from "react"; * import { Admin, Resource } from 'react-admin'; * * import { PostEdit } from './posts'; * * const App = () => ( * * * * ); * export default App; */ export declare const Edit: (inProps: EditProps) => React.JSX.Element; export interface EditProps extends EditBaseProps, Omit { } //# sourceMappingURL=Edit.d.ts.map