import { FormatCellEventArgs as FormatCellEventArgs_internal } from "./FormatCellEventArgs"; export declare class IgcFormatCellEventArgs { protected createImplementation(): FormatCellEventArgs_internal; protected _implementation: any; /** * @hidden */ get i(): FormatCellEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * Gets the row index of the cell to format. */ get row(): number; set row(v: number); /** * Gets the data item associated with the cell. */ get item(): any; set item(v: any); /** * Gets the value that is to be displayed in the cell. */ get value(): any; set value(v: any); /** * Sets the formatted text to display in the cell. */ get text(): string; set text(v: string); /** * The cell is part of a summary row. */ get isSummary(): boolean; set isSummary(v: boolean); /** * The cell is part of a grouping row. */ get isGroup(): boolean; set isGroup(v: boolean); }