import * as React from 'react'; type ElementAttrs = Omit, 'children'>; export interface RoxyEndpointFormProps extends ElementAttrs { className?: string; style?: React.CSSProperties; /** Fires when the underlying dispatches `roxy-submit`. */ onRoxySubmit?: (event: CustomEvent<{ endpoint: string; values: Record; queryKeys: string[]; sticky: boolean; }>) => void; /** Fires when the underlying dispatches `roxy-validation-error`. */ onRoxyValidationError?: (event: CustomEvent<{ missing: string[]; }>) => void; /** Fires when the underlying dispatches `roxy-spec-error`. */ onRoxySpecError?: (event: CustomEvent<{ url: string; message: string; }>) => void; } export declare const RoxyEndpointForm: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=endpoint-form.d.ts.map