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

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

export { JengaSuffixProps, Suffix };
