import * as react from 'react';
import { CSSProperties } from 'react';
import { BaseProps, ContainerStyleProps } from 'tastycss';

interface JengaPrefixProps extends BaseProps, ContainerStyleProps {
    onWidthChange?: Function;
    outerGap?: CSSProperties['gap'];
}
declare const Prefix: react.ForwardRefExoticComponent<JengaPrefixProps & react.RefAttributes<unknown>>;

export { JengaPrefixProps, Prefix };
