import { ToolActionType } from "igniteui-angular-core"; import { ToolActionEventDetail as ToolActionEventDetail_internal } from "./ToolActionEventDetail"; export declare class IgxToolActionEventDetail { protected createImplementation(): ToolActionEventDetail_internal; protected _implementation: any; /** * @hidden */ get i(): ToolActionEventDetail_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; get actionId(): string; set actionId(v: string); get actionType(): ToolActionType; set actionType(v: ToolActionType); static ngAcceptInputType_actionType: ToolActionType | string; get isModified(): boolean; set isModified(v: boolean); static ngAcceptInputType_isModified: boolean | string; get boolValue(): boolean; set boolValue(v: boolean); static ngAcceptInputType_boolValue: boolean | string; get numberValue(): number; set numberValue(v: number); static ngAcceptInputType_numberValue: number | string; get dateTimeValue(): Date; set dateTimeValue(v: Date); get untypedValue(): any; set untypedValue(v: any); get stringValue(): string; set stringValue(v: string); findByName(name: string): any; }