import React from 'react';
import { PropInfo } from '@cimpress/react-components';
type ComponentDocProps<T> = {
    name: string;
    includeTabs?: boolean;
    propInfos: PropInfo<T>[];
    children?: React.ReactNode;
    remarks?: React.ReactElement;
};
export default function ComponentDoc<T>({ name, includeTabs, propInfos, children, remarks, }: ComponentDocProps<T>): React.JSX.Element;
export {};
//# sourceMappingURL=TabbedComponentDoc.d.ts.map