export interface SubmitValues { name: string; password: string; isRemember: boolean; } interface Props { tabLogin: (type: string) => void; } /** * 第三方登录 * */ export declare const OtherLogin: (props: Props) => JSX.Element; export {};