import React from "react";
declare type Layout = {
    layout: "icon-left" | "icon-right";
};
export declare type InfoCardProps = Layout & {
    children?: React.ReactNode;
    description: string;
    title?: string;
};
declare const _default: ({ title, description, layout, children, }: InfoCardProps) => JSX.Element;
export default _default;
