import React from 'react';
import { ISingleAffix } from '../../../../../constants/single-style';
export interface IAffixProps {
defaultStyle: IKeyValues;
affix: ISingleAffix;
}
export default function Affix(props: IAffixProps): React.JSX.Element | null;