import React, { ComponentType } from 'react'; declare type WithRightPlaceholderProps = { measure?: string; }; export declare const withRightPlaceholder: >(WrappedComponent: React.ComponentType) => { ({ measure, ...props }: Props & WithRightPlaceholderProps): JSX.Element; displayName: string; }; export {};