export type EmojiMap = {
    [key: string]: string;
};
export interface Config {
    withSpace: boolean;
    automaticTypes: {
        fixup: string;
        merge: string;
        revert: string;
        version: string;
    };
    conventionalTypes: EmojiMap;
}
declare const _default: (path?: string) => Promise<Config>;
export default _default;
