import { AdaptableColumn } from '../../../../AdaptableState/Common/AdaptableColumn';
import type { IAdaptable } from '../../../../AdaptableInterfaces/IAdaptable';
import type { Layout } from '../../../../../types';
/** ValueSelector row sizing — matches Visibility and Order list rows. */
export declare const LAYOUT_WIZARD_COLUMN_LIST_OPTION_CLASS = "twa:!py-1 twa:!px-1.5";
/** Compact list header — spacing between Select All, Show Selected Only, and search. */
export declare const LAYOUT_WIZARD_COLUMN_LIST_HEADER_CLASS = "twa:gap-4";
/** Narrow search field (matches Visibility list column width, not full card width). */
export declare const LAYOUT_WIZARD_COLUMN_LIST_SEARCH_CLASS = "twa:w-[12rem] twa:shrink-0 twa:min-w-0";
/** Columns shown in Layout wizard column steps, in layout table order. */
export declare function getLayoutWizardOrderedColumns(adaptable: IAdaptable, layout: Layout): AdaptableColumn[];
