import * as React from 'react'; import { IExample, IPageSectionPropsWithSectionName } from '../Page.types'; export interface IExamplesSectionProps extends IPageSectionPropsWithSectionName { exampleKnobs?: React.ReactNode; examples?: IExample[]; } export declare const ExamplesSection: React.FunctionComponent;