import React, { CSSProperties, DetailedHTMLProps, HTMLAttributes, PropsWithChildren, Ref } from 'react';
export interface Props extends DetailedHTMLProps, HTMLDivElement> {
className?: string;
style?: CSSProperties;
trigger?: Array<'click' | 'hover'>;
render?: (options?: {
isHovered: boolean;
isClicked: boolean;
}) => React.ReactNode;
}
export type RefInternalMask = (props: PropsWithChildren & {
ref?: Ref;
}) => React.ReactElement;
declare const ForwardExternalMask: React.ForwardRefExoticComponent & React.RefAttributes>;
export default ForwardExternalMask;