import React, { PropsWithChildren, ReactNode } from 'react'; /** * @description * A responsive container for detail views with a main content area and an optional sidebar. * * @example * ```ts * import { PageDetailLayout } from '@vendure/admin-ui/react'; * * export function MyComponent() { * return ( * Sidebar content}> *
Main content
*
* ); * } * ``` * * @docsCategory react-components */ export declare function PageDetailLayout(props: PropsWithChildren<{ sidebar?: ReactNode; }>): React.JSX.Element;