/// /** * UserLogoutCardProps * @param csrfToken - CSRF token * @param challenge - Ory LogoutRequest challenge * @param action - the URL used for the form action * @param className - css class overrides for the UserLogoutCard * @param cardImage - card image is usually the company logo */ export interface UserLogoutCardProps { csrfToken: string; challenge: string; action: string; className?: string; cardImage?: string | React.ReactElement; } /** * UserLogoutCard renders an OAuth2 logout card for the user * @see UserLogoutCardProps */ export declare const UserLogoutCard: ({ csrfToken, challenge, action, className, cardImage, }: UserLogoutCardProps) => import("react").JSX.Element; //# sourceMappingURL=user-logout-card.d.ts.map