import { ReactNode } from 'react'; interface AuthCardHeaderProps { classNames?: { base?: string; logo?: string; title?: string; }; /** Overrides the generated `auth-card-header-*` trace id. */ id?: string; logo?: ReactNode; title: ReactNode; } export declare function AuthCardHeader({ classNames, id, logo, title }: AuthCardHeaderProps): import("react").JSX.Element; export {};