import React, { FC, ReactNode } from "react"; import { NoticeStatus } from "./types"; type Props = React.ComponentProps<"div"> & { status?: NoticeStatus; onNoticeShow?: () => void; "aria-label": string; hidden?: boolean; className?: string; children?: ReactNode; }; declare const EbayInlineNotice: FC; export default EbayInlineNotice; //# sourceMappingURL=inline-notice.d.ts.map