import React from "react";
import { SettingsScreenConfiguration } from "./types";
export type SettingsScreenProps = {
    /**
     * Your settings screen configuration.
     */
    config?: SettingsScreenConfiguration;
    /**
     * Set this to true if you want full autonomy of the content on the settings page.
     * If this is false, we will put some default cells in the settings screen for you,
     * Like Release notes, About, etc.
     */
    clean?: boolean;
};
export declare const SettingsScreen: ({ config, clean }: SettingsScreenProps) => React.JSX.Element;
