declare type Direction = 'up' | 'right' | 'down' | 'left'; export declare function arrow(direction?: Direction): any; export {};