import { ObjectShorthandValue, ShorthandValue } from '../../types';
import { PopperShorthandProps } from './types';
export declare function partitionPopperPropsFromShorthand<P>(value: ShorthandValue<P & {
    popper?: PopperShorthandProps;
}>): [ShorthandValue<P> | ObjectShorthandValue<P>, PopperShorthandProps | undefined];
