import { IgrDefinitionBase, IIgrDefinitionBaseProps } from "./igr-definition-base";
import { SectionFooter } from "./SectionFooter";
/**
 * Used to configure the appearance of the section footer cells.
*/
export declare class IgrSectionFooter extends IgrDefinitionBase<IIgrSectionFooterProps> {
    protected createImplementation(): SectionFooter;
    /**
                                 * @hidden
                                 */
    get i(): SectionFooter;
    constructor(props: IIgrSectionFooterProps);
}
export interface IIgrSectionFooterProps extends IIgrDefinitionBaseProps {
}
