export declare const LayoutResizablePlacements: readonly ["left", "right", "top", "bottom"];
export type LayoutResizablePlacement = typeof LayoutResizablePlacements[number];
export declare function isResizablePlacement(placement: unknown): placement is LayoutResizablePlacement;
export declare function isHorizontalPlacement(placement: LayoutResizablePlacement): boolean;
