import React, { CSSProperties } from 'react';
interface IZoomInProps {
    onClick: () => void;
    className?: string;
    style?: CSSProperties;
    disabled?: boolean;
}
export default function ZoomIn(props: IZoomInProps): React.JSX.Element;
export {};
//# sourceMappingURL=ZoomIn.d.ts.map