import { AssetSourceComponentProps } from 'sanity';
import { Plugin as Plugin_2 } from 'sanity';

export declare const rasterAssetSource: Plugin_2<RasterConfig>;

export declare interface RasterAssetSourceProps extends AssetSourceComponentProps {
    config: RasterConfig;
}

export declare interface RasterConfig {
    apiKey: string;
    orgId: string;
}

export declare interface RasterImage {
    url: string;
    filename: string;
    size?: number;
    width?: number;
    height?: number;
    mimeType?: string;
}

export declare interface RasterToolProps {
    config: RasterConfig;
}

export { }
