importReactfrom'react';
/** Private component used to render placeholders in storybook and documentation examples */exportdeclareconstPlaceholder: React.FC<React.PropsWithChildren<{
id?: string | undefined;
width?: number | string;
height: number | string;
label?: string;
}>>;