import { JSX } from 'solid-js'; export type StableContainerProps = JSX.HTMLAttributes & { children: JSX.Element; }; export declare function StableContainer(props: StableContainerProps): JSX.Element;