import { default as React } from 'react'; interface IconWithIdentifierProps { text: string; showDivider?: boolean; icon?: React.ReactNode; color?: string; size?: "sm" | "md"; } export declare const IconWithIdentifier: React.FC; export type { IconWithIdentifierProps }; export default IconWithIdentifier;