import { ChatClientState } from "../../chat-stateful-client/src";
import { ChatBaseSelectorProps } from './baseSelectors';
/**
 * Selector type for {@link SendBox} component.
 *
 * @public
 */
export type SendBoxSelector = (state: ChatClientState, props: ChatBaseSelectorProps) => {
    displayName: string;
    userId: string;
};
/**
 * Selector for {@link SendBox} component.
 *
 * @public
 */
export declare const sendBoxSelector: SendBoxSelector;
//# sourceMappingURL=sendBoxSelector.d.ts.map