import React from 'react'; import { DefaultProps } from '../theme'; import { BannerTip, BannerTipProps } from './BannerTip'; export { BannerTip }; export type { BannerTipProps }; export interface BannerProps extends DefaultProps { /** Icon of banner */ icon?: React.ReactNode; /** Title of banner */ title?: React.ReactNode; /** Description of banner */ description?: React.ReactNode; } export declare const Banner: import("../utils/types").ComponentWithAs<"div", BannerProps>; //# sourceMappingURL=Banner.d.ts.map