type Props = { isMobile: boolean; customSectionProps: { CB_PLACEMENT_PROP_SECTION_SPEC_FULLWIDTH: boolean; 'CB_PLACEMENT_PROP_SECTION_SPEC_FULLWIDTH:MOBILE': boolean | null | undefined; CB_PLACEMENT_PROP_SECTION_SPEC_MINHEIGHT: number; 'CB_PLACEMENT_PROP_SECTION_SPEC_MINHEIGHT:MOBILE': number | null | undefined; CB_PLACEMENT_PROP_SECTION_SPEC_ROWS: number; 'CB_PLACEMENT_PROP_SECTION_SPEC_ROWS:MOBILE': number | null | undefined; CB_PLACEMENT_PROP_SECTION_SPEC_WIDTH: number; 'CB_PLACEMENT_PROP_SECTION_SPEC_WIDTH:MOBILE': number | null | undefined; }; }; export declare function parseCustomSectionPlacement({ isMobile, customSectionProps }: Props): { minHeight: number; width: number; rows: number; isFullWidth: boolean; }; export default parseCustomSectionPlacement;