import { PropsWithChildren } from 'react';
export declare namespace MemoStatic {
    type Props = PropsWithChildren;
}
/**
 * Prevents re-rendering from props change.
 */
export declare const MemoStatic: import('react').NamedExoticComponent<{
    children?: import('react').ReactNode | undefined;
}> & {
    displayName: string;
};
