import React from 'react'; import { FlintEmpty as FlintEmptyElement } from '@getufy/flint-ui/empty/flint-empty'; /** * Root container for an empty state. Wraps `flint-empty-header` and `flint-empty-content` in a vertically centred flex column. * * @slot (default) - Accepts `flint-empty-header`, `flint-empty-content`, and any extra elements (e.g. a "Learn More" link). */ export interface FlintEmptyProps extends React.HTMLAttributes { } export declare const FlintEmpty: React.ForwardRefExoticComponent>;