export interface DefaultValueElementOptions<Value> {
    defaultValue?: Value;
}
export declare class DefaultValueElementMixin<Value> {
    readonly options: any;
    get defaultValue(): Value | undefined;
}
