import { FC } from 'react'; export interface SectionProps { /** 次卡片 */ secondary?: boolean; /** 宽度充满父级 */ fullWidth?: boolean; /** 宽度一半 */ oneHalf?: boolean; /** 宽度三分之一 */ oneThird?: boolean; } export declare const Section: FC;