import React from 'react';
import zod from 'zod';
export declare const options: zod.ZodObject<{
    force: zod.ZodBoolean;
}, "strip", zod.ZodTypeAny, {
    force: boolean;
}, {
    force: boolean;
}>;
type Props = {
    options: zod.infer<typeof options>;
};
export default function Apply({ options }: Props): React.JSX.Element;
export {};
