import * as React from 'react'; import { IPageSectionPropsWithSectionName } from '../Page.types'; import { IPageJson } from 'office-ui-fabric-react/lib/common/DocPage.types'; export interface IImplementationSectionProps extends IPageSectionPropsWithSectionName { jsonDocs?: IPageJson; propertiesTablesSources?: string[]; allowNativeProps?: boolean; nativePropsElement?: string | string[]; allowNativePropsForComponentName?: string; hideImplementationTitle?: boolean; } export declare const ImplementationSection: React.FunctionComponent;