export interface TestingBannerProps { /** * Controls whether the testing banner is rendered. If false, nothing is displayed. */ visible: boolean; } export declare const TestingBanner: ({ visible }: TestingBannerProps) => import("react/jsx-runtime").JSX.Element | null;