import * as React from "react";
import type { Type } from "../../types";
type Props = {
    type: Type;
    selected: boolean;
} & React.SVGProps<SVGPathElement> & React.PropsWithChildren;
declare const TransitionPathFill: ({ children, type, selected, ...props }: Props) => React.JSX.Element;
export default TransitionPathFill;
//# sourceMappingURL=TransitionPathFill.d.ts.map