import React from 'react';
import type { Channel } from 'stream-chat';
export type ChannelPreviewActionButtonsProps = {
    channel: Channel;
};
export declare function ChannelPreviewActionButtons({ channel, }: ChannelPreviewActionButtonsProps): React.JSX.Element;
