import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../libs/fsresponsive'; import type { FC } from 'react'; import type { OpaqueCartInstanceId } from '../../common/models/unique-props'; import type { WithConditionalProps } from '../../frameworks/property-binding'; import type { BaseContainerProps, StandardContainerProps } from '../../models'; export interface PreStandardizedBaseCartZoneProps extends BaseContainerProps { instanceId?: OpaqueCartInstanceId | string; } export declare type BaseCartZoneProps = WithMediaQueryInnerProps>; export declare type CartZoneProps = WithConditionalProps & WithMediaQueryStyleProps; export declare const CartZone: FC; export default CartZone;