import { ButtonProps, StatefulPopoverProps } from "@mezo-org/mezo-clay"; import React from "react"; export type DropdownProps = { /** The callback to be called when the user clicks the sign-out button */ onSignOut?: () => void; /** The callback to be called when the user clicks the button in sign-in state */ onSignIn?: () => void; /** The props to be passed to the trigger button */ triggerProps?: { signedIn?: Omit & { size: "medium" | "large"; }; signedOut?: Omit; }; onOtherAssetsClick?: () => void; } & Omit; /** * Passport Dropdown component that displays user's wallet and assets information. * @param {DropdownProps} props - Component props. * @returns {JSX.Element} */ export declare function Dropdown(props: DropdownProps): React.JSX.Element; //# sourceMappingURL=Dropdown.d.ts.map