/** * Allows elements to be repeated in Plasmic Studio. * @param index The index of the copy (starting at 0). * @param elt the React element to be repeated (or an array of such). */ export default function repeatedElement(index: number, elt: T): T; /** * Allows elements to be repeated in Plasmic Studio. * @param isPrimary should be true for at most one instance of the element, and * indicates which copy of the element will be highlighted when the element is * selected in Studio. * @param elt the React element to be repeated (or an array of such). */ export default function repeatedElement(isPrimary: boolean, elt: T): T; export declare const setRepeatedElementFn: (fn: typeof repeatedElement) => void;