export type RingingCallProps = {
    /**
     * Whether to include the current user in the list of members to show.
     * @default false.
     */
    includeSelf?: boolean;
    /**
     * The maximum number of members to show.
     * @default 3.
     */
    totalMembersToShow?: number;
};
export declare const RingingCall: (props: RingingCallProps) => import("react/jsx-runtime").JSX.Element | null;
