import React from 'react';
export interface SectionCardPropsModel {
title: string;
showShadow: boolean;
backgroundColor: string;
showDivider?: boolean;
children?: React.ReactNode | React.ReactNode[];
}
export declare const SectionCard: React.FunctionComponent<SectionCardPropsModel>;