import { ReactNode } from 'react';
interface CanvasLoadingProps {
    children?: ReactNode;
    loading?: boolean;
    tip?: string | null;
}
declare const CanvasLoading: import("react").NamedExoticComponent<CanvasLoadingProps>;
export default CanvasLoading;
