/**
 * The event arguments when data from a grid is being copied.
*/
export interface IgrGridClipboardEvent {
    /**
     * `data` can be of any type and refers to the data that is being copied/stored to the clipboard
    */
    data?: any[];
    /**
     * `cancel` returns whether an external event has intercepted the copying
     * If the value becomes "true", it returns/exits from the method, instantiating the interface
    */
    cancel?: boolean | string;
}
