import { Gender } from "@rr0/common";
import { Grammar } from "../Grammar.js";
export declare class FrenchGrammar implements Grammar {
    plural(s: string): string;
    at(s: string, gender: Gender): string;
}
export declare const grammar_fr: FrenchGrammar;
