export interface Adapter {
    toKebab(name: string): string;
    fromKebab(name: string): string;
}
export declare const Adapters: {
    [key: string]: Adapter;
};
