import { type HTMLAttributes } from 'react'; import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export interface MainProps extends WithChildren, Omit, 'onResize' | keyof StylingProps>, StylingProps, DataTestId { /** * The minimum width of the main panel in pixels. * @defaultValue 320 */ minWidth?: number; } /** * The `Main` component is used inside the `Page` component for displaying content in the corresponding panel. * It is the only compound that is mandatory for rendering the `Page`. * @public */ export declare const Main: (props: MainProps & import("react").RefAttributes) => React.ReactElement | null;