import React from 'react'; import './index.less'; interface RightPanelProps { value: any; onChange: (value: any) => void; phone: string; } export interface QueryParams { sort_by: 'updated_at' | 'id' | ''; search: string; skip: number; num: number; } declare const RightPanel: (props: RightPanelProps) => React.JSX.Element; export default RightPanel;