import { SCEventType } from '@selfcommunity/types';
import { CacheStrategies } from '@selfcommunity/utils';
import 'swiper/css';
import { BaseDialogProps } from '../../shared/BaseDialog';
import { UserProps } from '../User';
import { WidgetProps } from '../Widget';
export interface EventMembersWidgetProps extends WidgetProps {
    /**
     * Event Object
     * @default null
     */
    event?: SCEventType;
    /**
     * Id of event object
     * @default null
     */
    eventId?: number;
    /**
     * Props to spread to single user object
     * @default empty object
     */
    userProps?: UserProps;
    /**
     * Feed API Query Params
     * @default [{'limit': 20, 'offset': 0}]
     */
    endpointQueryParams?: Record<string, string | number>;
    /**
     * Caching strategies
     * @default CacheStrategies.CACHE_FIRST
     */
    cacheStrategy?: CacheStrategies;
    /**
     * Props to spread to users suggestion dialog
     * @default {}
     */
    dialogProps?: BaseDialogProps;
    /**
     * Limit items
     */
    limit?: number;
    /**
     * Other props
     */
    [p: string]: any;
}
export default function EventMembersWidget(inProps: EventMembersWidgetProps): JSX.Element;
