/* * Copyright (c) 2021-2023 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * Provides a divider component to separate different content blocks/content elements. * @since 7 */ /** * Provides a divider component to separate different content blocks/content elements. * @form * @since 9 */ interface DividerInterface { /** * Return Divider. * @since 7 */ /** * Return Divider. * @form * @since 9 */ (): DividerAttribute; } /** * Defines the Divider attribute functions. * @since 7 */ /** * Defines the Divider attribute functions. * @form * @since 9 */ declare class DividerAttribute extends CommonMethod { /** * Indicates whether to use a horizontal splitter or a vertical splitter. * The options are as follows: false: horizontal splitter; true: vertical splitter. * @since 7 */ /** * Indicates whether to use a horizontal splitter or a vertical splitter. * The options are as follows: false: horizontal splitter; true: vertical splitter. * @form * @since 9 */ vertical(value: boolean): DividerAttribute; /** * Sets the color of the divider line. * @since 7 */ /** * Sets the color of the divider line. * @form * @since 9 */ color(value: ResourceColor): DividerAttribute; /** * Sets the width of the dividing line. * @since 7 */ /** * Sets the width of the dividing line. * @form * @since 9 */ strokeWidth(value: number | string): DividerAttribute; /** * Sets the end style of the split line. The default value is Butt. * @since 7 */ /** * Sets the end style of the split line. The default value is Butt. * @form * @since 9 */ lineCap(value: LineCapStyle): DividerAttribute; } /** * Defines Divider Component. * @since 7 */ /** * Defines Divider Component. * @form * @since 9 */ declare const Divider: DividerInterface; /** * Defines Divider Component instance. * @since 7 */ /** * Defines Divider Component instance. * @form * @since 9 */ declare const DividerInstance: DividerAttribute;