import { ElementType } from "@suid/types"; import { Accessor } from "solid-js"; /** * Appends the ownerState object to the props, merging with the existing one if necessary. * * @param elementType Type of the element that owns the `existingProps`. If the element is a DOM node, `ownerState` are not applied. * @param existingProps Props of the element. * @param ownerState */ export default function appendOwnerState(elementType: Accessor, existingProps: Accessor>, ownerState: object): { [x: string]: any; readonly ownerState: any; }; //# sourceMappingURL=appendOwnerState.d.ts.map