/** Alias for a string representing a full file path */
export type FilePath = string;
/** Alacritty configuration file content */
export type Config = {
    general?: {
        import?: string[];
    };
    [key: string]: unknown;
};
//# sourceMappingURL=types.d.ts.map