/**
* Copyright IBM Corp. 2022, 2024
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import React, { ReactNode } from 'react';
export interface EditFullPageProps {
/**
* Provide an optional class to be applied to the containing node.
*/
className?: string;
/**
* Provide the contents of the EditFullPage.
*/
children: ReactNode;
}
/**
* **This component is deprecated.**
* Use when settings on a page need to always be shown in edit mode, or when the context of the page is needed to make several changes.
* See usage guidance for further details.
* @deprecated
*/
export declare const EditFullPage: React.ForwardRefExoticComponent>;
//# sourceMappingURL=EditFullPage.d.ts.map