/// import type { ButtonProps } from '../../components/button'; import type { FromSchema } from 'json-schema-to-ts'; import type CompConfig from '../../../configs/components/wxOpenApi/phoneCode'; import type { CommonPropsType } from '../../types'; import '../style'; type TCompConfig = typeof CompConfig; type CompProps = FromSchema; export type PhoneCodeProps = CompProps & CommonPropsType; declare const PhoneCode: (props: ButtonProps) => JSX.Element; export default PhoneCode;