import type { ReactNode } from 'react';
export interface FeatureProps {
    /** Bold 18px title, a spec noun phrase such as "Check-Control". */
    title: string;
    /** One muted sentence saying why it matters. */
    children: ReactNode;
}
/**
 * One plain feature entry (`.kwac-trio-item`): bold title and a muted
 * benefit line, no border or background. Child of `FeatureTrio`.
 */
export declare function Feature({ title, children }: FeatureProps): import("react").JSX.Element;
