declare const _default: { sample: { title: string; description?: string; schema: { readonly title: "Field dependencies + async options"; readonly gridSize: 8; readonly fieldSize: 8; readonly maxWidth: "700px"; readonly fields: [{ readonly key: "dogBreed"; readonly type: "select"; readonly label: "Dog breed"; readonly placeholder: "Select a breed"; readonly options: () => Promise; }, { readonly key: "dogSubBreed"; readonly type: "select"; readonly label: "Dog sub-breed"; readonly placeholder: "Select a sub-breed"; readonly description: "This field depends on dogBreed. When DogBreen changes, the async function will be re-executed to get the updated options."; readonly dependencies: ["dogBreed"]; readonly options: ({ dogBreed }: import('../../../form/types/fields').Dependencies) => Promise; }]; }; data?: Record; }; }; export default _default;