import { type DataTestId, type StylingProps } from '@dynatrace/strato-components/core'; export declare const RESIZE_HANDLE_SIZE = 8; /** @internal */ export type ResizerProps = { name: string; order: number; resizable: boolean; } & StylingProps & DataTestId; /** * The `Resizer` component must be rendered between `Panel`s to ensure correct calculations * and provide a handle for the user to grab for resizing panels. * @internal */ export declare const Resizer: import("react").MemoExoticComponent<(props: { name: string; order: number; resizable: boolean; } & StylingProps & DataTestId & import("react").RefAttributes) => React.ReactElement | null>;