export type RaycastManifestCommand = {
    name?: unknown;
};
export type RaycastManifestTool = {
    name?: unknown;
};
export type RaycastManifest = {
    commands?: RaycastManifestCommand[];
    tools?: RaycastManifestTool[];
};
