import { MitosisComponent } from '../../types/mitosis-component';
import { Project } from 'ts-morph';
export type ParseMitosisOptions = {
    jsonHookNames?: string[];
    compileAwayPackages?: string[];
    typescript: boolean;
    tsProject?: {
        project: Project;
    };
    filePath?: string;
};
export type ResolvedImport = {
    path: string;
    value: string;
};
export type Context = {
    cwd?: string;
    builder: {
        component: MitosisComponent;
        resolvedImports?: ResolvedImport[];
    };
};
