import * as React from 'react';
export declare type Props = {
    readonly above?: string;
    readonly below?: string;
    readonly children: React.ReactNode;
};
export declare const make: React.ComponentType<Props>;
