/**
 * CLI共通オプションの型定義
 */
export interface CommonOptions {
    dir: string;
    project?: string;
    include: string;
    exclude: string;
    all?: boolean;
    dot?: string;
}
//# sourceMappingURL=types.d.ts.map