import { Component } from "react";
import Node from "./Node";
type Props = {
    children?: any;
    [key: string]: any;
};
/**
 * copy pixel with a linear interpolation
 * @prop {any} children content to render
 */
declare class LinearCopy extends Component<Props> {
    _node: Node | null;
    /**
     * get a reference to the underlying Node instance
     * @return {Node}
     */
    getNodeRef(): Node;
    _onRef: (node: Node | null) => void;
    render(): import("react/jsx-runtime").JSX.Element;
}
export default LinearCopy;
//# sourceMappingURL=LinearCopy.d.ts.map