import { InlineComponentProps, PrimaryTypes } from 'mic-global';
/**
 * Property value type
 */
export declare type PropertyValueType = PrimaryTypes;
/**
 * Property value props interface
 */
export interface PropertyValueProps extends InlineComponentProps<'value'> {
    /**
     * Any type data that you want to inspect
     */
    value?: PropertyValueType;
}
