export interface ListPluginProps { /** * When `true`, enforces strict indentation rules for list items, ensuring consistent structure. * When `false` (default), indentation is more flexible. */ hasStrictIndent?: boolean; } declare const ListPlugin: import("svelte").Component; type ListPlugin = ReturnType; export default ListPlugin;