persona-community-5/.pnpm-store/v3/files/d5/6249e67e5f57fe33243e0ad38d639d4b25c54a30e1bde7b48cf359287690372d822ad57652a4279f3d6fa676d625bd670ecf6e76fddc7f16d381509101cd3f
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

13 lines
328 B
Plaintext

import * as React from 'react';
interface PresenceProps {
children: React.ReactElement | ((props: {
present: boolean;
}) => React.ReactElement);
present: boolean;
}
declare const Presence: React.FC<PresenceProps>;
declare const Root: React.FC<PresenceProps>;
export { Presence, type PresenceProps, Root };