import { FC } from 'react'; import { TdGuideProps } from './type'; import { StyledProps } from '../common'; export interface GuideProps extends TdGuideProps, StyledProps { } declare const Guide: FC; export default Guide;