/// <reference types="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) => JSX.Element;
export default SeatCircle;
