export interface InstallOptions { visualized?: { basicPX: number; }; } declare const setConfig: (option: InstallOptions) => void; declare const getConfig: (key: keyof InstallOptions) => unknown; declare const getAllConfig: () => InstallOptions; export { getConfig, getAllConfig, setConfig, };