export type Shortcut = {
    action: string;
    label?: string;
    svg: string;
    fn?: 'write' | 'typedText';
};
declare const shortcuts: Shortcut[];
export default shortcuts;
