type IntlShape = { id: string; defaultMessage: string; }; type Props = { name: string; value: unknown; onChange: (e: { target: { name: string; value: unknown; }; }) => void; intlLabel: IntlShape; description?: IntlShape; disabled?: boolean; error?: string; contentTypeSchema?: { attributes?: unknown; }; modifiedData?: { name?: string; }; }; /** * CTB option: ordered narration sources. Kind (scalar vs blocks) is inferred from each field’s Strapi type. */ declare const NarrationCtbSources: (props: Props) => import("react/jsx-runtime").JSX.Element; export { NarrationCtbSources };