import * as React from "react";
import type { Type, Size } from "../types";
interface Props {
    type?: Type;
    size?: Size;
}
export declare const StyledCirclePath: import("styled-components").StyledComponent<"path", any, {}, never>;
declare const SeatCircle: ({ size, type }: Props) => React.JSX.Element;
export default SeatCircle;
