import * as React from "react"; import { VariantLabels } from "../../motion/types"; interface PresenceChildProps { children: React.ReactElement; isPresent: boolean; onExitComplete?: () => void; initial?: false | VariantLabels; custom?: any; presenceAffectsLayout: boolean; } export declare const PresenceChild: ({ children, initial, isPresent, onExitComplete, custom, presenceAffectsLayout, }: PresenceChildProps) => JSX.Element; export {};