export interface SettingsPage {
    stateChanged: (state: boolean) => void;
    save(): Promise<boolean>;
    reset(): Promise<boolean>;
}
