import * as i0 from "@angular/core"; export interface FuTableExpandRowTemplateContext { /** The current row object */ $implicit: T; /** Row index in the rendered table */ index: number; /** Current search term */ searchTerm: string; } /** * Defines a custom expand-row template for a `fu-table`. * * The template context exposes: * - `row` – the current row data * - `index` – row index * - `searchTerm` – current search term * * ## Typing * To enable strong typing for `row`, provide the table data using `rowOf`. * This is used only for type inference and does not affect rendering. * * Usage: * ```html * * {{ row.name }} {{row.age}} * * ``` * * If `rowOf` is omitted, `row` will be typed as `any`. */ export declare class FuTableExpandRowTemplateDirective { /** * Provides typing context for the expand row template. * Used only for type inference – not consumed at runtime. */ of: import("@angular/core").InputSignal; static ngTemplateContextGuard(_dir: FuTableExpandRowTemplateDirective, ctx: unknown): ctx is FuTableExpandRowTemplateContext; static ɵfac: i0.ɵɵFactoryDeclaration, never>; static ɵdir: i0.ɵɵDirectiveDeclaration, "[fuTableExpandRow]", never, { "of": { "alias": "rowOf"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>; }