import '@cf-wasm/internals/polyfills/image-data';
import initAsync, { type InitInput } from '../lib/photon_rs';
/** Initializes photon asynchronously */
export declare const initPhoton: {
    (input: {
        module_or_path: InitInput | Promise<InitInput>;
    } | InitInput | Promise<InitInput>): Promise<void>;
    promise: Promise<void> | null;
    /** Indicates whether photon is initialized */
    initialized: boolean;
    ensure(): Promise<void>;
};
export { initAsync };
export * from '../lib/photon_rs';
