export declare type LayoutKey = {
    value: string;
    withShift?: string;
    withAlt?: string;
    withShiftAlt?: string;
};
export declare type KeyboardLayout = Record<string, LayoutKey>;
