import { default as React } from 'react'; import { SectionCardPadding, SectionCardVariant } from '../constants/sectionCardStyles'; interface SectionCardProps extends Omit, 'children' | 'id'> { id?: string; surfaceId?: string; label?: React.ReactNode; header?: React.ReactNode; children?: React.ReactNode; className?: string; headerClassName?: string; bodyClassName?: string; variant?: SectionCardVariant; padding?: SectionCardPadding; bordered?: boolean; withBackground?: boolean; } declare const SectionCard: React.FC; export default SectionCard; export type { SectionCardProps }; //# sourceMappingURL=SectionCard.d.ts.map