import { FlexboxProps } from '@lobehub/ui';
import { ReactNode, Ref } from 'react';
export interface IconPreviewProps extends FlexboxProps {
    children: string | ReactNode;
    ref?: Ref<HTMLDivElement>;
}
declare const IconPreview: import("react").NamedExoticComponent<IconPreviewProps>;
export default IconPreview;
