import { SectionSize, SectionVariantProps } from './section.css';
import { default as React } from 'react';

interface BASE_SECTION_PROPS {
    children: React.ReactNode;
    className?: string;
    size?: SectionSize;
}
export type SectionProps = BASE_SECTION_PROPS & SectionVariantProps & React.HTMLAttributes<HTMLDivElement>;
export declare const Section: React.FC<SectionProps>;
export {};
//# sourceMappingURL=section.d.ts.map