@adonis-agora/authkit-react
Version:
Frontend ergonomics over AuthKit for AdonisJS + Inertia + React apps: a typed useAuth() hook, role-gating hooks and gating components.
11 lines (10 loc) • 468 B
TypeScript
export interface OrganizationProfileProps {
inviteLabel?: string;
leaveLabel?: string;
className?: string;
}
declare function OrganizationProfileInner({ inviteLabel, leaveLabel, className, }: OrganizationProfileProps): import("react").DetailedReactHTMLElement<{
className: string;
}, HTMLElement> | null;
export declare function OrganizationProfile(props: Parameters<typeof OrganizationProfileInner>[0]): import("react").JSX.Element | null;
export {};