import React, { PropsWithChildren } from 'react'; /** * @description * A container for page content which provides a consistent width and spacing. * * @example * ```ts * import { PageBlock } from '@vendure/admin-ui/react'; * * export function MyComponent() { * return ( * * ... * * ); * } * ``` * * @docsCategory react-components */ export declare function PageBlock(props: PropsWithChildren): React.JSX.Element;