export interface ListingOptions { controlPlaneUrl: string; header: Record; slug: string; listed: boolean; } export declare function setListing(opts: ListingOptions): Promise<{ slug: string; listed: boolean; }>; /** * `substrat publish ` — a builder REQUESTS listing (marketplace-publish.md §5). Any owner * may ask; a staff operator then reviews and lists it. Owner-checked control-plane-side. */ export declare function requestPublish(opts: { controlPlaneUrl: string; header: Record; slug: string; }): Promise; //# sourceMappingURL=listing.d.ts.map