pagamio-frontend-commons-lib
Version:
Pagamio library for Frontend reusable components like the form engine and table container
15 lines (14 loc) • 394 B
TypeScript
import type { QueryProps } from 'src/shared/types';
import React from 'react';
interface SelectedEventTileProps {
title?: string;
format?: string;
url: string;
valueKey: string;
previousValueKey: string;
changeKey: string;
details?: any[];
query: QueryProps;
}
declare const SelectedEventTile: React.FC<SelectedEventTileProps>;
export default SelectedEventTile;