import * as React from "react"; export interface MessagePanelActionsProps { primaryAction: React.ReactNode; secondaryAction?: React.ReactNode; } declare const MessagePanelActions: ({ primaryAction, secondaryAction }: MessagePanelActionsProps) => React.JSX.Element; export default MessagePanelActions;