export interface SlicerCliOptions {
    verbose: boolean;
    help: boolean;
    input: string | undefined;
    criterion: string | undefined;
    output: string | undefined;
    diff: boolean;
    'input-is-text': boolean;
    stats: boolean;
    api: boolean;
    'no-magic-comments': boolean;
}
