import React from 'react';

interface SingleColumnProps {
    pX?: number;
    pY?: number;
    children?: React.ReactNode;
    style?: React.CSSProperties;
}
declare const SingleColumn: React.FC<SingleColumnProps>;

export { SingleColumn };
