import type { ComponentBlock } from '../types'; import type { PlaceRestrictionType } from '../../../../DynamicLayout/types'; import type { LayoutItem } from 'publ-echo/dist/lib'; import type { ZOrder } from 'publ-echo/dist/lib/GridLayoutEditor/group'; export declare function getHeightFitContent(cb: ComponentBlock): { mobile: boolean; desktop: boolean; }; export declare function parsePlacement(components: ComponentBlock[], zOrders: ZOrder, placementRestriction?: PlaceRestrictionType): { sm: LayoutItem[]; lg: LayoutItem[]; }; export default parsePlacement;