import { ShapeCornerRadii, ShapeProps } from './types'; export declare const Circle: (props: ShapeProps) => any; export declare const Capsule: (props: ShapeProps) => any; export declare const Ellipse: (props: ShapeProps) => any; export declare const RoundedRectangle: (props: ShapeProps & { cornerRadius: number; }) => any; export declare const Rectangle: (props: ShapeProps) => any; export declare const UnevenRoundedRectangle: (props: ShapeProps & ShapeCornerRadii) => any;