import './style.css'; import { AxiosError } from 'axios'; import { FC } from 'react'; interface IResetPasswordProps { token?: string; onResetPasswordSuccess?: (res: any) => void; onResetPasswordError?: (e: AxiosError) => void; } export declare const ResetPasswordContainer: FC; export {};