import type { JSX } from '../../stencil-public-runtime';
import type { WebComponentInterface } from '../../internal/functional-components/generic-types';
import type { ImageApi } from '../../internal/functional-components/image/api';
import type { LoadingType } from '../../internal/props';
export declare class KolImage implements WebComponentInterface<ImageApi> {
    private readonly ctrl;
    _alt: string;
    watchAlt(value?: string): void;
    _loading?: LoadingType;
    watchLoading(value?: LoadingType): void;
    _sizes?: string;
    watchSizes(value?: string): void;
    _src: string;
    watchSrc(value?: string): void;
    _srcset?: string;
    watchSrcset(value?: string): void;
    componentWillLoad(): void;
    render(): JSX.Element;
}
