import type { ProfileTeamMember, ProfileProduct } from '../types.js'; export interface KibiTomlProfile { name?: string; description?: string; token?: string; chain?: string; team_members?: ProfileTeamMember[]; products?: ProfileProduct[]; } /** * Read kibi.toml from CWD. Returns undefined if the file does not exist. * Throws with a friendly message if the file exists but cannot be parsed. */ export declare function readKibiToml(): KibiTomlProfile | undefined;