/**
 * This file is part of the drip-table project.
 * @link     : https://drip-table.jd.com/
 * @author   : Emil Zhai (root@derzh.com)
 * @modifier : Emil Zhai (root@derzh.com)
 * @copyright: Copyright (c) 2021 JD Network Technology Co., Ltd.
 */
/// <reference types="react" />
export interface TableLayoutComponentProps {
    header?: (() => React.ReactNode) | React.ReactNode;
    footer?: (() => React.ReactNode) | React.ReactNode;
}
