import { SVATraits } from 'jade-garden';
/**
 * **Image**
 * @description An image element with an optional fallback for loading and error status.
 * @see [source](https://kobalte.dev/docs/core/components/image#anatomy)
 */
export declare const slots: readonly ["fallback", "img"];
/**
 * **Image**
 * @description An image element with an optional fallback for loading and error status.
 * @see [source](https://kobalte.dev/docs/core/components/image#anatomy)
 */
export type Slots = (typeof slots)[number];
/**
 * **Image**
 * @description An image element with an optional fallback for loading and error status.
 * @see [source](https://kobalte.dev/docs/core/components/image#api-reference)
 */
export type Traits = SVATraits<Slots, {
    fallback: {};
    img: {};
}>;
