UNPKG

@heymarco/next-auth

Version:

A complete authentication solution for web applications.

13 lines (12 loc) 764 B
import { default as React } from 'react'; import { IconProps, InputProps, ListItemProps, ListProps, TooltipProps } from '@reusable-ui/components'; export interface FieldNameProps { isActiveSection: boolean; isActionApplied: boolean; nameInputComponent?: React.ReactComponentElement<any, InputProps<Element>>; nameTooltipComponent?: React.ReactComponentElement<any, TooltipProps<Element>> | null; nameValidationListComponent?: React.ReactComponentElement<any, ListProps<Element>>; nameValidationListItemComponent?: React.ReactComponentElement<any, ListItemProps<Element>>; nameValidationIconComponent?: React.ReactComponentElement<any, IconProps<Element>>; } export declare const FieldName: (props: FieldNameProps) => React.JSX.Element;