import React from 'react';
import { NumberProp } from '../lib/extract/types';
import Shape from './Shape';
export default class Use extends Shape<{
    x?: NumberProp;
    y?: NumberProp;
    width?: NumberProp;
    height?: NumberProp;
    xlinkHref?: string;
    href?: string;
}> {
    static displayName: string;
    static defaultProps: {
        x: number;
        y: number;
        width: number;
        height: number;
    };
    render(): React.JSX.Element;
}
//# sourceMappingURL=Use.d.ts.map