import { HTMLAttributes, ReactNode } from 'react';
export type MaterialComponentProps = {
type: M;
itemId?: ItemId;
itemIndex?: number;
displayIndex?: number;
highlight?: boolean;
playDown?: boolean;
preview?: boolean;
/** What to display on the back face of material that has 2 faces (see {@link MaterialContentProps}). */
backChildren?: ReactNode;
} & HTMLAttributes;
export declare const MaterialComponent: import("react").NamedExoticComponent<{
type: number;
itemId?: any;
itemIndex?: number;
displayIndex?: number;
highlight?: boolean;
playDown?: boolean;
preview?: boolean;
/** What to display on the back face of material that has 2 faces (see {@link MaterialContentProps}). */
backChildren?: ReactNode;
} & HTMLAttributes & import("react").RefAttributes>;