import * as React from "react";
import { SvgProps, NumberProp } from "react-native-svg";
interface Props extends SvgProps {
    size?: NumberProp;
}
declare const Squares2X2Icon: ({ size, ...props }: Props) => React.JSX.Element;
export default Squares2X2Icon;
