import type { SVGProps } from 'react'; declare const flipClasses: { readonly none: undefined; readonly vertical: string; readonly horizontal: string; readonly both: string; }; export type SvgShapeFlip = keyof typeof flipClasses; export type ShapeShapeFlip = SvgShapeFlip; export type ShapeSvgProps = Omit, 'children' | 'viewBox'> & { flip?: SvgShapeFlip; }; export declare function TriangleShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function CircleShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function EllipseShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function SemicircleShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function RightTriangleShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function KiteShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function PennantShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function RoundedSquareShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function RoundedTriangleShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function SquircleShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function GothicArchPanelSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function QuarterCircleShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function SingleBracketShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function ArrowPentagonShapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function VesicaPiscisSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function SeedOfLifeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function FlowerOfLifeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function MetatronsCubeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function SriYantraSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function TetrahedronWireshapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function CubeWireshapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function OctahedronWireshapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function IcosahedronWireshapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function DodecahedronWireshapeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function GoldenSpiralSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export declare function TorusTubeSvg({ className, flip, ...props }: ShapeSvgProps): import("react/jsx-runtime").JSX.Element; export {};