import type { FC } from "react"; import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from "../../../fsresponsive"; import type { WithConditionalProps } from "../../frameworks/property-binding"; import type { BaseContainerProps, StandardContainerProps } from "../../models"; export interface PreStandardizedLocalDynamicDataZoneProps extends BaseContainerProps { localDynamicData: Record; localDynamicDataKeys?: string[]; } export declare type BaseLocalDynamicDataZoneProps = WithMediaQueryInnerProps>; export declare type LocalDynamicDataZoneProps = WithConditionalProps & WithMediaQueryStyleProps; export declare const LocalDynamicDataZone: FC; export default LocalDynamicDataZone;