import * as React from "react";
import type { Type, Size } from "../types";
interface Props {
    type: Type;
    size: Size;
}
declare const SeatCircle: ({ size, type }: Props) => React.JSX.Element;
export default SeatCircle;
//# sourceMappingURL=SeatCircle.d.ts.map