import { ConfigPlugin } from "@expo/config-plugins";
import { Config } from "./config";
type Props = Config & {
    directory: string;
    configPath: string;
};
declare const withWidget: ConfigPlugin<Props>;
export default withWidget;
