import { SessionManager } from '../session/manager.js'; import { type ToolResponse } from './types.js'; type ParagraphSpacingInput = { paragraph_ids?: unknown; before_twips?: unknown; after_twips?: unknown; line_twips?: unknown; line_rule?: unknown; }; type RowHeightInput = { table_indexes?: unknown; row_indexes?: unknown; value_twips?: unknown; rule?: unknown; }; type CellPaddingInput = { table_indexes?: unknown; row_indexes?: unknown; cell_indexes?: unknown; top_dxa?: unknown; bottom_dxa?: unknown; left_dxa?: unknown; right_dxa?: unknown; }; type FormatLayoutParams = { file_path?: string; strict?: boolean; paragraph_spacing?: ParagraphSpacingInput; row_height?: RowHeightInput; cell_padding?: CellPaddingInput; }; export declare function formatLayout(manager: SessionManager, params: FormatLayoutParams): Promise; export {}; //# sourceMappingURL=format_layout.d.ts.map