UNPKG

@sheerid/jslib-nightly

Version:

SheerID JavaScript Library

12 lines (10 loc) 464 B
import { default as React } from 'react'; import { VerificationService } from '../../lib/types/types'; export interface FormHeaderProps { verificationService: VerificationService; title: React.ReactNode; children?: React.ReactNode; fallbackLogo?: JSX.Element; classNameIdentifier?: string; } export declare const FormHeader: ({ verificationService, title, children, fallbackLogo, classNameIdentifier, }: FormHeaderProps) => React.JSX.Element;