export type Button = { disable: boolean; type: string; name: string; title: string; url: string; order?: number; }; export declare const MAX_ORDER = 60; export declare const MIN_ORDER = 40; export declare const DEFAULT_ORDER = 50; export declare function addLink(name: string, url: string, order?: number): void;