import { PropsWithChildren } from 'react'; export type FeedbackBarProps = PropsWithChildren<{ /** variant deciding color and icon, default success */ variant?: 'information' | 'danger' | 'warning' | 'success'; /** callback for on close that can optionally be used by parrent */ onClose?: () => void; }>; /** Represents a component to show feedback within a Page. */ export declare const FeedbackBar: ({ children, variant, onClose }: FeedbackBarProps) => import("react").JSX.Element;