import React from 'react';
export type SnapshotId = string | 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;
