/**
 * Built-in editor for Slug fields.
 */
export type SlugEditorConfiguration = {
    /** A prefix that will be shown in the editor's form to give some context to your editors */
    url_prefix?: string;
    /** A placeholder that will be shown in the editor's input to provide editors with an example */
    placeholder?: string;
};
