import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** @internal */ export interface ParentPanelProps extends WithChildren, StylingProps, DataTestId { /** PanelName */ name: string; /** * Whether animations should be disabled. * If true or 'prefers-reduced-motion' is set to 'reduce', no animations are applied. * @defaultValue false */ disableAnimations?: boolean; } /** * The `ParentPanel` holds a number of `Panel`s and `Resizer`s and handles all the calculations needed to render panels with a specific * preferred width, minimum width, or panels that are rendered conditionally. It also provides the functionality to resize panels. * @internal */ export declare const ParentPanel: (props: ParentPanelProps) => import("react/jsx-runtime.js").JSX.Element;