import React from 'react';
import { SharedStateId } from '../../../../shared/helpers/useSharedState';
export type SnapshotId = SharedStateId | number;
export type SnapshotName = string;
export type SnapshotProps = {
    name: SnapshotName;
    children: React.ReactNode;
};
declare function SnapshotProvider(props: SnapshotProps): import("react/jsx-runtime").JSX.Element;
declare namespace SnapshotProvider {
    var _supportsSpacingProps: any;
}
export default SnapshotProvider;
