import * as React from 'react'; import { IPageSectionPropsWithSectionName } from '../Page.types'; export interface IBestPracticesSectionProps extends IPageSectionPropsWithSectionName { bestPractices?: string; dos?: string; donts?: string; } export declare const BestPracticesSection: React.FunctionComponent;