export declare type OptionsType = { itemsPerPage?: number; username?: string; password?: string; } | undefined; export declare const setOptions: (newOptions: OptionsType) => void; export declare const getOptions: () => { itemsPerPage: number; username: string; password: string; };