import * as React from 'react';
type IconSlotValue = React.JSXElementConstructor<any>;
export type ChatIconSlotsType = {
    sendMessageIcon: IconSlotValue;
    stopStreamIcon: IconSlotValue;
    messageLikeOutlinedIcon: IconSlotValue;
    messageLikeFilledIcon: IconSlotValue;
    messageDislikeOutlinedIcon: IconSlotValue;
    messageDislikeFilledIcon: IconSlotValue;
};
export declare const chatIconSlots: ChatIconSlotsType;
export {};
