declare const innerDefault: {
  props: {
    src: {
      type: StringConstructor;
      default: string;
    };
    mode: {
      type: StringConstructor;
      default: string;
    };
    width: {
      type: (NumberConstructor | StringConstructor)[];
      default: number;
    };
    height: {
      type: (NumberConstructor | StringConstructor)[];
      default: number;
    };
    round: {
      type: BooleanConstructor;
      default: boolean;
    };
    radius: {
      type: (NumberConstructor | StringConstructor)[];
      default: number;
    };
    lazyLoad: {
      type: BooleanConstructor;
      default: boolean;
    };
    showMenuByLongpress: {
      type: BooleanConstructor;
      default: boolean;
    };
    loadingIcon: {
      type: StringConstructor;
      default: string;
    };
    errorIcon: {
      type: StringConstructor;
      default: string;
    };
    showLoading: {
      type: BooleanConstructor;
      default: boolean;
    };
    showError: {
      type: BooleanConstructor;
      default: boolean;
    };
    fade: {
      type: BooleanConstructor;
      default: boolean;
    };
    webp: {
      type: BooleanConstructor;
      default: boolean;
    };
    duration: {
      type: (NumberConstructor | StringConstructor)[];
      default: number;
    };
    backgroundColor: {
      type: StringConstructor;
      default: string;
    };
    customStyle: {
      type: StringConstructor;
      default: string;
    };
    transitionStyle: {
      type: StringConstructor;
      default: string;
    };
  };
};
export default innerDefault;
