import * as React from 'react';
import type { breakpoint as Breakpoint } from './Stacks_types.gen';
export declare type Props = {
    readonly breakpoints?: Breakpoint[];
    readonly children: React.ReactNode;
    readonly debug?: boolean;
    readonly spacing?: number;
};
export declare const make: React.ComponentType<Props>;
