import { LocalVector } from '@gisosteam/aol/source/LocalVector'; import { LayerStyles } from '@gisosteam/aol/LayerStyles'; export interface IUseDrawSourceProps { /** * Draw layer uid. */ layerUid: string; /** * Persist. */ persist?: boolean; /** * Styles. */ styles?: LayerStyles; /** * Name. */ name?: string; /** * Snapshotable. */ snapshotable?: boolean; /** * Listable. */ listable?: boolean; /** * Listable. */ removable?: boolean; /** * Type */ type?: string; } export declare function useDrawSource(props: IUseDrawSourceProps): LocalVector;