import type { InviteCardProps } from "./InviteCard.types"; /** * Custom hook for InviteCard business logic * Manages loading state and handles button click events * * @param props - InviteCard component props * @returns Object containing data and functions */ declare const useInviteCard: (props: InviteCardProps) => { data: { isProcessing: boolean; isDisabled: boolean; title: string; description: string; buttonText: string; icon: string; buttonIcon: string; }; fns: { handleInviteClick: () => Promise; }; }; export default useInviteCard;