import { ComponentInternalInstance, Ref } from 'vue';
import { Props } from './shared';
/**
 * @param propsFromConfig Ref of custom props. Required to be ref so vue can rerender component on custom props change.
 * @returns new props object, where some props replaced with props from config.
 */
export declare const createProps: (instance: ComponentInternalInstance, propsFromConfig: Ref<Props>) => Props;
