import { Property, ChildProperty } from '@syncfusion/ej2-base';

/**
 * Interface for a class StackedHeaders
 */
export interface StackedHeadersModel {

    /**
     * Defines the column header text
     *
     * @default null
     */
    text?: string;

    /**
     * Defines the multiple columns keyField
     *
     * @default null
     */
    keyFields?: string;

}