import type { YooEditor } from '../types';
import type { GetMarksOptions } from './types';
/**
 * Get all marks from current selection or specified block
 *
 * @param editor - YooEditor instance
 * @param options - Get marks options
 * @returns Object with all marks or null if no slate found
 *
 * @example
 * ```typescript
 * // Get all marks from current selection
 * const marks = Marks.getAll(editor);
 *
 * // Get all marks from specific block
 * const marks = Marks.getAll(editor, { at: 0 });
 * ```
 */
export declare function getMarks(editor: YooEditor, options?: GetMarksOptions): Record<string, unknown> | null;
//# sourceMappingURL=getMarks.d.ts.map