import { PropsWithChildren, ReactNode } from "react";
interface Props {
icon?: ReactNode;
action?: ReactNode;
onAction?: () => void;
}
export declare function SettingsBanner({ children, icon, action, onAction }: PropsWithChildren<Props>): JSX.Element;
export {};