import React from 'react'; import { IconProps } from './Icon'; import { SimpleTextProps } from './text/SimpleText'; import { StackProps } from './View/Stack'; export declare type IconLabeledProps = StackProps & { icon?: React.ReactNode; label?: string; labelProps?: SimpleTextProps; subTitle?: string; subTitleProps?: SimpleTextProps; iconProps?: IconProps; }; export declare const IconLabeled: React.MemoExoticComponent<({ icon, label, labelProps, subTitle, size, subTitleProps, iconProps, ...restProps }: IconLabeledProps) => JSX.Element>; //# sourceMappingURL=IconLabeled.d.ts.map