import React from 'react'; /** * @memberof InfoBox * @alias InfoBoxProps */ export declare type InfoBoxProps = { /** Title of an InfoBox */ title: string; /** Inner content - usually couple of {@link Text} nodes */ children: React.ReactNode; /** Optional testId */ testId?: string; }; /** * @classdesc * * * * Used for all type of information like: * * > you don't have x - please add first one" * * in the system. * * ### Usage * * ```javascript * import { InfoBox, InfoBoxProps } from '@admin-bro/design-system' * ``` * * @component * @subcategory Molecules * @hideconstructor * @see {@link https://storybook.adminbro.com/?path=/story/designsystem-molecules-infobox--default Storybook} * @see InfoBoxProps * @example * return ( * * Currently there are no cars in the system * To create first click * * * ) * @section design-system */ declare const InfoBox: React.FC; export { InfoBox }; export default InfoBox;