import { SvgIconProps } from './types/SvgIconTypes';
/**
 * The SvgIcon component provide a variety of custom icon
 * that based on react-native-svg package. This not the best
 * choice, but it's can be perfect for specific cases.
 */
declare const SvgIcon: {
    ({ name, size, color, strokeWidth, fill, style, }: SvgIconProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default SvgIcon;
//# sourceMappingURL=SvgIcon.d.ts.map