import meow from "meow";
export interface Flags {
config?: string;
verbose?: boolean;
ci?: boolean;
}
export declare const cli: meow.Result<{
config: {
type: "string";
alias: string;
};
verbose: {
type: "boolean";
alias: string;
};
ci: {
type: "boolean";
};
}>;