/**
 * Check if HextaUI has been initialized in the project
 */
export declare function isHextaUIInitialized(projectRoot: string): Promise<boolean>;
/**
 * Create a marker file to indicate HextaUI initialization
 */
export declare function createInitMarker(projectRoot: string): Promise<void>;
/**
 * Check if the marker file exists
 */
export declare function hasInitMarker(projectRoot: string): Promise<boolean>;
