import React from 'react'; interface BaseIconProps { color: string; pushRight?: boolean; children: React.ReactNode; } declare const BaseIcon: ({ color, pushRight, children }: BaseIconProps) => React.JSX.Element; export default BaseIcon; //# sourceMappingURL=BaseIcon.d.ts.map