import React from "react"; interface NoDataMessageProps extends Omit, "title"> { /** Leading glyph, sized to 16px (mobile) / 24px (md+). Optional. */ icon?: React.ReactNode; /** Primary line (body size). */ title?: React.ReactNode; /** Secondary line (caption size). */ description?: React.ReactNode; } /** * A transparent, centered stack of an icon, a title and a description, in muted * gray. Any piece is optional, so it also covers "icon + title", "title only", * and similar reduced forms. */ declare const NoDataMessage: React.ForwardRefExoticComponent>; export { NoDataMessage, type NoDataMessageProps }; //# sourceMappingURL=no-data-message.d.ts.map