export type StyledProps = { /** * The coordinates of the Polygon. */ coordinates: number[][]; /** * The scale of the Polygon. * @defaultValue 10 */ scale?: number; /** * The fill of the Polygon. */ fill?: string; /** * The fillOpacity of the Polygon. */ fillOpacity?: number; /** * The fillRule of the Polygon. */ fillRule?: "nonzero" | "evenodd" | "inherit"; /** * The stroke of the Polygon. */ stroke?: string; /** * The strokeWidth of the Polygon. */ strokeWidth?: string; /** * The strokeLinecap of the Polygon. */ strokeLinecap?: "butt" | "round" | "square" | "inherit"; /** * The strokeLinejoin of the Polygon. */ strokeLinejoin?: "round" | "bevel" | "miter" | "inherit"; /** * The strokeDasharray of the Polygon. */ strokeDasharray?: string; /** * The strokeDashoffset of the Polygon. */ strokeDashoffset?: number; /** * The labelColor of the Polygon. */ labelColor?: string; /** * The labels of the Polygon. */ labels?: string[]; /** * The labelSpacing of the Polygon. */ labelSpacing?: number; /** * The labelPosition of the Polygon. * @default 'center' */ labelPosition?: "center" | "leftTop" | "rightTop" | "leftBottom" | "rightBottom" | "top" | "bottom" | "left" | "right"; }; declare const ThemedComponent: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; export default ThemedComponent; //# sourceMappingURL=Styled.d.ts.map