import * as React from 'react';
import { Action, Field } from 'ketting';
type FormProps = {
    csrfToken: string | null;
    action: Action;
};
type FieldProps = {
    field: Field;
};
export declare function ActionForm(props: FormProps): React.JSX.Element;
export declare function ActionField(props: FieldProps): React.ReactElement;
export {};
