import { TemplateType } from './types.js';
export type { TemplateType };
export interface F2elintOptions {
    template?: TemplateType;
    stylelint?: boolean;
    prettier?: boolean;
    commitlint?: boolean;
    lintStaged?: boolean;
    disableLog?: boolean;
}
export default function f2elint(project: string, options?: F2elintOptions): Promise<void>;
