import { PropsWithChildren } from 'react'; import { BannerProps } from '@shopify/post-purchase-ui-extensions'; export interface Props extends PropsWithChildren { /** * Checks whether autofocus on the banner needs to be applied. */ autofocus?: boolean; } export declare function Banner({ children, collapsible, iconHidden, status, title, autofocus, }: Props): JSX.Element;