UNPKG

amplify-material-ui

Version:

A Material-UI based implementation of aws amplify

10 lines (9 loc) 293 B
import * as React from 'react'; import { AuthData } from 'amplify-auth-hooks'; export interface ChangeAuthStateLinkProps { label: string; newState: string; authData?: AuthData; [key: string]: any; } export declare const ChangeAuthStateLink: React.FC<ChangeAuthStateLinkProps>;