import type { DoctorContext } from '@shopify/cli-kit/node/doctor/types';
export interface ThemeDoctorContext extends DoctorContext {
    environment: string;
    store?: string;
    password?: string;
    themeName?: string;
    themePath?: string;
    themeId?: string;
}
export interface ThemeDoctorOptions {
    path?: string;
    environment: string;
    store?: string;
    password?: string;
}
export declare function createDoctorContext(options: ThemeDoctorOptions): ThemeDoctorContext;
