import React from "react";
export interface Item {
    label: string;
    value: string;
}
export declare const Use: React.FC<{
    force?: boolean;
}>;
