import * as react from 'react'; import { HTMLAttributes } from 'react'; import { Status } from './status-dot.js'; interface StackService { name: string; status: Status; } interface DockerStackCardProps extends HTMLAttributes { /** Stack name */ name: string; /** Services in the stack */ services: StackService[]; /** Path to compose file */ composePath?: string; /** Whether the card is loading */ loading?: boolean; } declare const DockerStackCard: react.ForwardRefExoticComponent>; export { DockerStackCard, type DockerStackCardProps, type StackService };