import React from 'react';
export interface SectionProps extends React.ComponentPropsWithoutRef<'table'> {
    /**
     * 内边距
     */
    p?: string;
    /**
     * 背景色
     */
    bg?: string;
    /**
     * 文本色
     */
    color?: string;
}
export declare const Section: React.ForwardRefExoticComponent<SectionProps & import("@music163/tango-boot").TangoComponentProps & React.RefAttributes<unknown>>;
