import * as react_jsx_runtime0 from "react/jsx-runtime"; import React from "react"; //#region src/components/user-button.d.ts type UserButtonProps = { showUserInfo?: boolean; colorModeToggle?: () => void | Promise; extraItems?: { text: string; icon: React.ReactNode; onClick: () => void | Promise; }[]; mockUser?: { displayName?: string; primaryEmail?: string; profileImageUrl?: string; }; }; declare function UserButton(props: UserButtonProps): react_jsx_runtime0.JSX.Element; //#endregion export { UserButton }; //# sourceMappingURL=user-button.d.ts.map