import { NodeExtension } from "../../NodeExtension";
export declare class EmoticonPickerNode extends NodeExtension {
    get name(): string;
    get schema(): any;
    get view(): any;
    commands({ type, schema }: {
        type: any;
        schema: any;
    }): (attrs: any) => (state: any, dispatch: any) => void;
}
