import { FC } from "react"; interface SummaryProps { fixed?: boolean | "top" | "bottom"; children?: React.ReactNode; } declare const Summary: FC; export default Summary;