import React from 'react';
import { TransformProps } from '../lib/extract/types';
import Shape from './Shape';
export default class G<P> extends Shape<P> {
    static displayName: string;
    setNativeProps: (props: Object & {
        matrix?: number[];
    } & TransformProps) => void;
    render(): React.JSX.Element;
}
//# sourceMappingURL=G.d.ts.map