import React from "react"; import { ButtonProps } from "@shared/contentful/blocks/button/types"; import { CheckPlansProps } from "@shared/types/micro-components"; export interface AddressInputBannerProps { entryName?: string; title: string; variant?: string; cta?: ButtonProps; navHeight?: number; isVisible?: boolean; renderCheckPlans?: (overrides?: CheckPlansProps) => React.ReactNode; }