import { CallClientState } from "../../calling-stateful-client/src";
import { IncomingCallStackCall } from "../../react-components/src";
/**
 * Selector to get the active and removed incoming calls.
 * @public
 */
export type IncomingCallStackSelector = (state: CallClientState) => {
    activeIncomingCalls: IncomingCallStackCall[];
    removedIncomingCalls: IncomingCallStackCall[];
};
/**
 * Select the active and removed incoming calls from the stateful client for the IncomingCallNotificationStackComponent.
 * @public
 */
export declare const incomingCallStackSelector: IncomingCallStackSelector;
//# sourceMappingURL=incomingCallStackSelector.d.ts.map