/** * DeviceRegistrationModal - Prompts user to name their device during first registration * * Styled to match the Buoy brand design system. */ import React from "react"; interface DeviceRegistrationModalProps { /** Custom title text */ title?: string; /** Custom description text */ description?: string; /** Custom button text */ buttonText?: string; /** Called after registration completes */ onComplete?: (deviceName: string) => void; } export declare function DeviceRegistrationModal({ title, description, buttonText, onComplete, }: DeviceRegistrationModalProps): React.JSX.Element | null; export {}; //# sourceMappingURL=DeviceRegistrationModal.d.ts.map